Changes between Version 1 and Version 2 of InstallAutotool
- Timestamp:
- 02/02/09 11:23:13 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallAutotool
v1 v2 10 10 Compiler (g++), from version 3.3 upwards. We also checked the Intel C++ 11 11 Compiler (icc) and Microsoft Visual C++ (on Windows). 12 If you want to develop with LEMON under Windows, you can use a Windows13 installer or you can consider using Cygwin.14 12 15 13 In this description we will suppose a Linux environment and GNU C++ Compiler. 16 If you would like to develop under Windows and use a Windows installer,17 you could skip the following sections and continue reading18 \ref basic_concepts.19 However keep in mind that you have to make appropriate steps instead of20 the instructions detailed here to be able to use LEMON with your compiler.21 14 22 15 === LP Solver Requirements === 23 16 24 17 The LEMON LP solver interface can use the GLPK (GNU Linear Programming 25 Kit), CPLEX and {{{SoPlex}}} solver . If you want to use it, you will need at26 least one of these.27 See the '''{{{INSTALL}}}'''file how to enable these at compile time.18 Kit), CPLEX and {{{SoPlex}}} solvers. 19 If you want to use it, you will need at least one of these. 20 See the [source:INSTALL INSTALL] file how to enable these at compile time. 28 21 29 22 === Install from Source === … … 31 24 You can download LEMON from the web site: 32 25 [http://lemon.cs.elte.hu]. 33 There you will find released versions in form of {{{.tar.gz}}} files.26 There you will find released versions in form of {{{.tar.gz}}} and {{{.zip}}} files. 34 27 If you want a developer version (for example you want to contribute in 35 28 developing LEMON) then you might want to use our Mercurial repository. 36 This case is detailed [ install_hglater], so from now on we29 This case is detailed [#InstalltheLatestDevelopmentVersion later], so from now on we 37 30 suppose that you downloaded a {{{.tar.gz}}} file. 38 39 31 Thus you have to do the following steps. 40 32 … … 42 34 43 35 {{{ 44 wget http://lemon.cs.elte.hu/pub/sources/lemon-1.0. tar.gz36 wget http://lemon.cs.elte.hu/pub/sources/lemon-1.0.2.tar.gz 45 37 }}} 46 38 47 39 Note, that the tarball is named {{{lemon-x.y.z.tar.gz}}} where {{{x}}}, {{{y}}} and {{{z}}} (which is missing if it is 0) are numbers indicating the 48 40 version of the library, in our example we will have 49 {{{lemon-1.0. 1.tar.gz}}}.41 {{{lemon-1.0.2.tar.gz}}}. 50 42 51 43 Then issue the following commands: 52 44 53 45 {{{ 54 tar xvzf lemon-1.0. 1.tar.gz55 cd lemon-1.0. 146 tar xvzf lemon-1.0.2.tar.gz 47 cd lemon-1.0.2 56 48 ./configure 57 49 make … … 72 64 73 65 {{{ 74 tar xvzf lemon-1.0. tar.gz66 tar xvzf lemon-1.0.2.tar.gz 75 67 }}} 76 68 This command untars the {{{tar.gz}}} file into a directory named 77 {{{lemon-1.0 }}}.69 {{{lemon-1.0.2}}}. 78 70 79 71 {{{ 80 cd lemon-1.0 72 cd lemon-1.0.2 81 73 }}} 82 74 This command enters the directory. … … 111 103 112 104 Several other configure flags can be passed to {{{./configure}}}. 113 For more information see the {{{INSTALL}}}file.105 For more information see the [source:INSTALL INSTALL] file. 114 106 115 107 === Install the Latest Development Version ===