Difference between revisions of "Guile"

From CBLFS
Jump to navigationJump to search
Line 4: Line 4:
 
| http://ftp.gnu.org/pub/gnu/guile/guile-{{Guile-Version}}.tar.gz
 
| http://ftp.gnu.org/pub/gnu/guile/guile-{{Guile-Version}}.tar.gz
 
|-
 
|-
 +
!Download Patch:
 +
| http://svn.cross-lfs.org/svn/repos/patches/guile/guile-{{Guile-Version}}-libtool22_fix-1.patch
 
|}
 
|}
  
Line 18: Line 20:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
 +
Fix a compilation error with libtool 2.2:
 +
 +
patch -Np1 -i ../guile-{{Guile-Version}}-libtool22_fix-1.patch
  
 
Compile the package:
 
Compile the package:
Line 31: Line 37:
  
 
=== 32Bit ===
 
=== 32Bit ===
 +
 +
Fix a compilation error with libtool 2.2:
 +
 +
patch -Np1 -i ../guile-{{Guile-Version}}-libtool22_fix-1.patch
  
 
Compile the package:
 
Compile the package:
Line 44: Line 54:
  
 
=== N32 ===
 
=== N32 ===
 +
 +
Fix a compilation error with libtool 2.2:
 +
 +
patch -Np1 -i ../guile-{{Guile-Version}}-libtool22_fix-1.patch
  
 
Compile the package:
 
Compile the package:
Line 58: Line 72:
  
 
=== 64Bit ===
 
=== 64Bit ===
 +
 +
Fix a compilation error with libtool 2.2:
 +
 +
patch -Np1 -i ../guile-{{Guile-Version}}-libtool22_fix-1.patch
  
 
Compile the package:
 
Compile the package:

Revision as of 06:42, 21 September 2008

Download Source: http://ftp.gnu.org/pub/gnu/guile/guile-1.8.7.tar.gz
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/guile/guile-1.8.7-libtool22_fix-1.patch

Introduction to Guile

Guile is a library designed to help programmers create flexible applications. Using Guile in an application allows programmers to write plug-ins, or modules (there are many names, but the concept is essentially the same) and users to use them to have an application fit their needs.

Project Homepage: http://www.gnu.org/software/guile/guile.html

Dependencies

Required

Optional

Non-Multilib

Fix a compilation error with libtool 2.2:

patch -Np1 -i ../guile-1.8.7-libtool22_fix-1.patch

Compile the package:

./configure --prefix=/usr --with-threads &&
make

Install the package

make install

Multilib

32Bit

Fix a compilation error with libtool 2.2:

patch -Np1 -i ../guile-1.8.7-libtool22_fix-1.patch

Compile the package:

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

Fix a compilation error with libtool 2.2:

patch -Np1 -i ../guile-1.8.7-libtool22_fix-1.patch

Compile the package:

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

Fix a compilation error with libtool 2.2:

patch -Np1 -i ../guile-1.8.7-libtool22_fix-1.patch

Compile the package:

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