Difference between revisions of "TCL"

From CBLFS
Jump to navigationJump to search
(N32)
(I added the package description from BLFS.)
Line 6: Line 6:
  
 
----
 
----
 +
 +
== Introduction to TCL ==
 +
 +
The TCL package contains the Tool Command Language, a robust general-purpose scripting language. It was installed as part of the temporary system in CLFS for use with test suites, but was not reinstalled as part of the permanent system.
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 18:47, 2 December 2006

Download Source: http://prdownloads.sourceforge.net/tcl/tcl8.4.14-src.tar.gz

Introduction to TCL

The TCL package contains the Tool Command Language, a robust general-purpose scripting language. It was installed as part of the temporary system in CLFS for use with test suites, but was not reinstalled as part of the permanent system.

Dependencies

Non-Multilib

Compile the package:

cd unix &&
./configure --prefix=/usr --enable-threads &&
make

Install the package

make install &&
make install-private-headers &&
ln -v -sf tclsh8.4 /usr/bin/tclsh

Multilib

32Bit

Compile the package:

cd unix &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr \
    --enable-threads &&
make

Install the package

make install

N32

Compile the package:

cd unix &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
    --enable-threads &&
make

Install the package

make install

64Bit

Compile the package:

cd unix &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
    --enable-threads &&
make

Install the package

make install &&
make install-private-headers &&
ln -v -sf tclsh8.4 /usr/bin/tclsh