Introduction: The GLPK (GNU Linear Programming Kit) package 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. Website: http://www.gnu.org/software/glpk/glpk.html Requirements: NA Configure and Compile Options: Compiler: Sun Studio 11 64-bits Components CC = "/opt/SUNWspro/bin/cc" F77 = "/opt/SUNWspro/bin/f77" CFLAGS = "-fast -xarch=amd64 -KPIC" FFLAGS = "-fast -xarch=amd64 -KPIC" ./configure --prefix=/usr/local/glpk-4.8 --bindir=/usr/local/glpk-4.8/bin/amd64 --libdir=/usr/local/glpk-4.8/lib/64 32-bits Components CC = "/opt/SUNWspro/bin/cc" F77 = "/opt/SUNWspro/bin/f77" CFLAGS = "-fast -xtarget=opteron -KPIC" FFLAGS = "-fast -xtarget=opteron -KPIC" ./configure --prefix=/usr/local/glpk-4.8 --bindir=/usr/local/glpk-4.8/bin/i86 --libdir=/usr/local/glpk-4.8/lib