Difference between revisions of "Guile"

From CBLFS
Jump to navigationJump to search
(I added the package description from BLFS.)
Line 9: Line 9:
  
 
----
 
----
 +
 +
== Introduction to Guile ==
 +
 +
The Guile package contains the Project GNU's extension language library. Guile also contains a stand alone Scheme interpreter.
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 15:05, 4 December 2006

Download Source: http://ftp.gnu.org/pub/gnu/guile/guile-1.8.0.tar.gz
Required Patch: http://svn.cross-lfs.org/svn/repos/patches/guile/guile-1.8.0-64bit_fix-1.patch

Introduction to Guile

The Guile package contains the Project GNU's extension language library. Guile also contains a stand alone Scheme interpreter.

Dependencies

Required

Optional

Non-Multilib

Compile the package:

patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch &&
./configure --prefix=/usr --with-threads &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-threads &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-32} &&
mv -v /usr/bin/guile{,-32}

N32

Compile the package:

patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --with-threads \
    --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-n32} &&
mv -v /usr/bin/guile{,-n32}

64Bit

Compile the package:

patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --with-threads\
    --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/guile-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/guile-config &&
mv -v /usr/bin/guile{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/guile