GSL: Difference between revisions

From CBLFS
Jump to navigationJump to search
mNo edit summary
No edit summary
Line 11: Line 11:
Compile the package:
Compile the package:


    ./configure --prefix=/opt/scimath &&
./configure --prefix=/opt/scimath &&
    make
make


Install the package:
Install the package:


    make install
make install


== Multilib ==
== Multilib ==
Line 24: Line 24:
Compile the package:
Compile the package:


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


Install the package:
Install the package:


    make install
make install


=== N32 ===
=== N32 ===


Compile the package:
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/opt/scimath \
    --libdir=/opt/scimath/lib32


Install the package:
Install the package:
make install


=== 64Bit ===
=== 64Bit ===
Line 41: Line 47:
Compile the package:
Compile the package:


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


Install the package:
Install the package:


    make install
make install


== 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 09:31, 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=/opt/scimath &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

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

Install the package:

make install

N32

Compile the package:

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

Install the package:

make install

64Bit

Compile the package:

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

Install the package:

make install

Contents

  • Installed Libraries: libgslcblas.{so,la,a}, libgsl.{so,la,a}
Retrieved from "?title=GSL&oldid=3946"