The Tcl package contains the Tool Command Language, a robust general-purpose scripting language.
This package is known to build and work properly using an LFS-8.0 platform.
Download (HTTP): http://downloads.sourceforge.net/tcl/tcl8.6.6-src.tar.gz
Download MD5 sum: 5193aea8107839a79df8ac709552ecb7
Download size: 9.1 MB
Estimated disk space required: 64 MB (including html documentation)
Estimated build time: 1.0 SBU (additional 2.9 SBU for the tests)
Optional Documentation
Download (HTTP): http://downloads.sourceforge.net/tcl/tcl8.6.6-html.tar.gz
Download MD5 sum: 29b28a8c98a97f34bcb92af3222d253f
Download size: 1.2 MB
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/tcl
This package is also installed in LFS during the bootstrap phase. As it is not installed during Chapter 6 of LFS, installation instructions are included here in BLFS.
If you downloaded the optional documentation, unpack the tarball by issuing the following command:
tar -xf ../tcl8.6.6-html.tar.gz --strip-components=1
Install Tcl by running the following commands:
export SRCDIR=`pwd` && cd unix && ./configure --prefix=/usr \ --mandir=/usr/share/man \ $([ $(uname -m) = x86_64 ] && echo --enable-64bit) && make && sed -e "s#$SRCDIR/unix#/usr/lib#" \ -e "s#$SRCDIR#/usr/include#" \ -i tclConfig.sh && sed -e "s#$SRCDIR/unix/pkgs/tdbc1.0.4#/usr/lib/tdbc1.0.4#" \ -e "s#$SRCDIR/pkgs/tdbc1.0.4/generic#/usr/include#" \ -e "s#$SRCDIR/pkgs/tdbc1.0.4/library#/usr/lib/tcl8.6#" \ -e "s#$SRCDIR/pkgs/tdbc1.0.4#/usr/include#" \ -i pkgs/tdbc1.0.4/tdbcConfig.sh && sed -e "s#$SRCDIR/unix/pkgs/itcl4.0.5#/usr/lib/itcl4.0.5#" \ -e "s#$SRCDIR/pkgs/itcl4.0.5/generic#/usr/include#" \ -e "s#$SRCDIR/pkgs/itcl4.0.5#/usr/include#" \ -i pkgs/itcl4.0.5/itclConfig.sh && unset SRCDIR
To test the results, issue: make test.
Now, as the root
user:
make install && make install-private-headers && ln -v -sf tclsh8.6 /usr/bin/tclsh && chmod -v 755 /usr/lib/libtcl8.6.so
If you downloaded the optional documentation, install it by issuing
the following commands as the root
user:
mkdir -v -p /usr/share/doc/tcl-8.6.6 && cp -v -r ../html/* /usr/share/doc/tcl-8.6.6
$([ $(uname -m) = x86_64 ] &&
echo --enable-64bit)
: This switch is used to enable 64
bit support in Tcl on 64 bit
operating systems.
make install-private-headers: This command is used to install the Tcl library interface headers used by other packages if they link to the Tcl library.
ln -v -sf tclsh8.6 /usr/bin/tclsh: This command is used to create a compatibility symbolic link to the tclsh8.6 file as many packages expect a file named tclsh.
sed -e ...: The Tcl package expects that its source tree is preserved so that packages depending on it for their compilation can utilize it. These sed remove the references to the build directory and replace them with saner system-wide locations.
Last updated on 2017-02-14 16:20:11 -0800