Guile: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 19: | Line 19: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch && | |||
./configure --prefix=/usr --with-threads && | ./configure --prefix=/usr --with-threads && | ||
make | make | ||
| Line 32: | Line 33: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch && | |||
CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-threads && | CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-threads && | ||
make | make | ||
| Line 44: | Line 46: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch && | |||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --with-threads \ | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --with-threads \ | ||
--libdir=/usr/lib32 && | --libdir=/usr/lib32 && | ||
| Line 57: | Line 60: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../guile-1.8.0-64bit_fix-1.patch && | |||
CC="gcc ${BUILD64}" ./configure --prefix=/usr --with-threads\ | CC="gcc ${BUILD64}" ./configure --prefix=/usr --with-threads\ | ||
--libdir=/usr/lib64 && | --libdir=/usr/lib64 && | ||
Revision as of 12:28, 24 September 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 |
Dependencies
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}
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}
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