GLPK: Difference between revisions

From CBLFS
Jump to navigationJump to search
Added page.
 
mNo edit summary
Line 11: Line 11:
Compile the package:
Compile the package:


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


Line 29: Line 29:
Compile the package:
Compile the package:


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


Line 46: Line 46:
Compile the package:
Compile the package:


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


Line 60: Line 60:
== Contents ==
== Contents ==


* Installed Programs: /opt/gnu/bin/glpsol, /opt/gnu/bin/tspsol
* Installed Programs: /opt/scimath/bin/glpsol, /opt/scimath/bin/tspsol
* Installed Libraries: /opt/gnu/lib/libglpk.a
* Installed Libraries: /opt/scimath/lib/libglpk.a

Revision as of 20:52, 11 November 2006

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
Retrieved from "?title=GLPK&oldid=3938"