GLPK

From CBLFS
Revision as of 21:52, 11 November 2006 by Weibullguy (talk | contribs)
Jump to navigationJump to search
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/scimath &&
   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/scimath --libdir=/opt/scimath/lib &&
   make

Install the package:

   make install

N32

Compile the package:

Install the package:

64Bit

Compile the package:

   CC="gcc ${BUILD64}" ./configure --prefix=/opt/scimath --libdir=/opt/scimath/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/scimath/bin/glpsol, /opt/scimath/bin/tspsol
  • Installed Libraries: /opt/scimath/lib/libglpk.a