Difference between revisions of "GSL"

From CBLFS
Jump to navigationJump to search
Line 11: Line 11:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/opt/scimath &&
+
  ./configure --prefix=/usr &&
 
  make
 
  make
  
Line 24: Line 24:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/opt/scimath \
+
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
     --libdir=/opt/scimath/lib &&
+
     --libdir=/usr/lib &&
 
  make
 
  make
  
Line 31: Line 31:
  
 
  make install &&
 
  make install &&
  mv -v /opt/scimath/bin/gsl-config{,-32}
+
  mv -v /usr/bin/gsl-config{,-32}
  
 
=== N32 ===
 
=== N32 ===
Line 37: Line 37:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/opt/scimath \
+
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
     --libdir=/opt/scimath/lib32
+
     --libdir=/usr/lib32
  
 
Install the package:
 
Install the package:
  
 
  make install &&
 
  make install &&
  mv -v /opt/scimath/bin/gsl-config{,-n32}
+
  mv -v /usr/bin/gsl-config{,-n32}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 49: Line 49:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix=/opt/scimath \
+
  CC="gcc ${BUILD64}" ./configure --prefix=/usr \
     --libdir=/opt/scimath/lib64 &&
+
     --libdir=/usr/lib64 &&
 
  make
 
  make
  
Line 56: Line 56:
  
 
  make install &&
 
  make install &&
  mv -v /opt/scimath/bin/gsl-config{,-64} &&
+
  mv -v /usr/bin/gsl-config{,-64} &&
  ln -sfv /usr/bin/multiarch_wrapper /opt/scimath/bin/gsl-config
+
  ln -sfv /usr/bin/multiarch_wrapper /usr/bin/gsl-config
  
 
== Contents ==
 
== Contents ==
  
 
*Installed Libraries: libgslcblas.{so,la,a}, libgsl.{so,la,a}
 
*Installed Libraries: libgslcblas.{so,la,a}, libgsl.{so,la,a}

Revision as of 15:30, 12 November 2006

Download Source: ftp://ftp.gnu.org/gnu/gsl/gsl-1.8.tar.gz

The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides over 1000 functions covering a wide range of mathematical routines such as random number generators, special functions and least-squares fitting.

Non-Multilib

Compile the package:

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

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr \
    --libdir=/usr/lib &&
make

Install the package:

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

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32

Install the package:

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

64Bit

Compile the package:

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

Install the package:

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

Contents

  • Installed Libraries: libgslcblas.{so,la,a}, libgsl.{so,la,a}