GLPK: Difference between revisions

From CBLFS
Jump to navigationJump to search
mNo edit summary
Added documentation.
Line 19: Line 19:


  make install
  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 /usr/share/doc/glpk-4.11/examples &&
install -v examples/*.{dat,mps,mpd,tsp} /usr/share/doc/glpk-4.11/examples


== Multilib ==
== Multilib ==
Line 63: Line 58:
  make install
  make install


There are examples that are not installed automatically.  You may want to copy them out of the source tree for future use.
== Documentation ==
 
Install the postscript documentation for GLPK:
 
  install -d -m755 -v /usr/share/doc/glpk-4.11 &&
  cp -v doc/*.ps /usr/share/doc/glpk-4.11
 
There are examples that are not installed automatically.  You may want to copy them out of the source tree for future use and reference.


  install -dv /usr/share/doc/glpk-4.11/examples &&
  install -d -m755 -v /usr/share/doc/glpk-4.11/examples &&
  install -v examples/*.{dat,mps,mpd,tsp} /usr/share/doc/glpk-4.11/examples
  install -v examples/*.{dat,mps,mod,tsp} /usr/share/doc/glpk-4.11/examples


== Contents ==
== Contents ==

Revision as of 20:12, 13 December 2006

Download Source: ftp://ftp.gnu.org/gnu/glpk/glpk-4.11.tar.gz

Introduction to GLPK

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=/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

N32

Compile the package:

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

Install the package:

make install

64Bit

Compile the package:

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

Install the package:

make install

Documentation

Install the postscript documentation for GLPK:

 install -d -m755 -v /usr/share/doc/glpk-4.11 &&
 cp -v doc/*.ps /usr/share/doc/glpk-4.11

There are examples that are not installed automatically. You may want to copy them out of the source tree for future use and reference.

install -d -m755 -v /usr/share/doc/glpk-4.11/examples &&
install -v examples/*.{dat,mps,mod,tsp} /usr/share/doc/glpk-4.11/examples

Contents

  • Installed Programs: /usr/bin/glpsol, /usr/bin/tspsol
  • Installed Libraries: /usr/lib/libglpk.a
Retrieved from "?title=GLPK&oldid=4596"