GLPK
From CBLFS
Download Source: | ftp://ftp.gnu.org/gnu/glpk/glpk-4.11.tar.gz |
---|
GLPK is the GNU Linear Programming Kit. It is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library.
Non-Multilib
Compile the package:
./configure --prefix=/opt/gnu && make
Install the package:
make install
There are examples that are not installed automatically. You may want to copy them out of the source tree for future use.
install -dv /home/<you>/glpksamps && cp -v examples/*.{dat,mps,mpd,tsp} /home/<you>/glpksamps
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/opt/gnu --libdir=/opt/gnu/lib && make
Install the package:
make install
N32
Compile the package:
Install the package:
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/opt/gnu --libdir=/opt/gnu/lib64 && make
Install the package:
make install
There are examples that are not installed automatically. You may want to copy them out of the source tree for future use.
install -dv /home/<you>/glpksamps && cp -v examples/*.{dat,mps,mpd,tsp} /home/<you>/glpksamps
Contents
- Installed Programs: /opt/gnu/bin/glpsol, /opt/gnu/bin/tspsol
- Installed Libraries: /opt/gnu/lib/libglpk.a