[5] | 1 | Installation Instructions |
---|
| 2 | ========================= |
---|
| 3 | |
---|
[318] | 4 | Since you are reading this I assume you already obtained one of the release |
---|
[5] | 5 | tarballs and successfully extracted it. The latest version of LEMON is |
---|
[245] | 6 | available at our web page (http://lemon.cs.elte.hu/). |
---|
[5] | 7 | |
---|
[318] | 8 | In order to install LEMON from the extracted source tarball you have to |
---|
[5] | 9 | issue the following commands: |
---|
| 10 | |
---|
[245] | 11 | 1. `cd lemon-x.y.z' |
---|
[5] | 12 | |
---|
[245] | 13 | This command changes to the directory which was created when you |
---|
| 14 | extracted the sources. The x.y.z part is a version number. |
---|
[5] | 15 | |
---|
[245] | 16 | 2. `./configure' |
---|
[5] | 17 | |
---|
[245] | 18 | This command runs the configure shell script, which does some checks and |
---|
| 19 | creates the makefiles. |
---|
[5] | 20 | |
---|
[245] | 21 | 3. `make' |
---|
[5] | 22 | |
---|
[245] | 23 | This command compiles the non-template part of LEMON into libemon.a |
---|
[318] | 24 | file. It also compiles the programs in the tools and demo subdirectories |
---|
| 25 | when enabled. |
---|
[5] | 26 | |
---|
[245] | 27 | 4. `make check' |
---|
[5] | 28 | |
---|
[245] | 29 | This step is optional, but recommended. It runs the test programs that |
---|
| 30 | we developed for LEMON to check whether the library works properly on |
---|
| 31 | your platform. |
---|
[5] | 32 | |
---|
[245] | 33 | 5. `make install' |
---|
[5] | 34 | |
---|
[245] | 35 | This command installs LEMON under /usr/local (you will need root |
---|
| 36 | privileges to be able to do that). If you want to install it to some |
---|
| 37 | other location, then pass the --prefix=DIRECTORY flag to configure in |
---|
| 38 | step 2. For example: `./configure --prefix=/home/username/lemon'. |
---|
[5] | 39 | |
---|
[245] | 40 | 6. `make install-html' |
---|
[5] | 41 | |
---|
[245] | 42 | This command installs the documentation under share/doc/lemon/docs. The |
---|
| 43 | generated documentation is included in the tarball. If you want to |
---|
| 44 | generate it yourself, then run `make html'. Note that for this you need |
---|
| 45 | to have the following programs installed: Doxygen, Graphviz, Ghostscript, |
---|
| 46 | Latex. |
---|
[5] | 47 | |
---|
| 48 | |
---|
[245] | 49 | Configure Options and Variables |
---|
| 50 | =============================== |
---|
| 51 | |
---|
[318] | 52 | In step 2 you can customize the actions of configure by setting variables |
---|
[245] | 53 | and passing options to it. This can be done like this: |
---|
| 54 | `./configure [OPTION]... [VARIABLE=VALUE]...' |
---|
| 55 | |
---|
[318] | 56 | Below you will find some useful variables and options (see `./configure --help' |
---|
| 57 | for more): |
---|
[245] | 58 | |
---|
| 59 | CXX='comp' |
---|
[5] | 60 | |
---|
| 61 | Change the C++ compiler to 'comp'. |
---|
| 62 | |
---|
| 63 | CXXFLAGS='flags' |
---|
| 64 | |
---|
[245] | 65 | Pass the 'flags' to the compiler. For example CXXFLAGS='-O3 -march=pentium-m' |
---|
| 66 | turns on generation of aggressively optimized Pentium-M specific code. |
---|
| 67 | |
---|
| 68 | --prefix=PREFIX |
---|
| 69 | |
---|
| 70 | Set the installation prefix to PREFIX. By default it is /usr/local. |
---|
[5] | 71 | |
---|
| 72 | --enable-demo |
---|
| 73 | |
---|
[245] | 74 | Build the examples in the demo subdirectory. |
---|
[5] | 75 | |
---|
| 76 | --disable-demo |
---|
| 77 | |
---|
[245] | 78 | Do not build the examples in the demo subdirectory (default). |
---|
[5] | 79 | |
---|
[245] | 80 | --enable-tools |
---|
| 81 | |
---|
| 82 | Build the programs in the tools subdirectory (default). |
---|
| 83 | |
---|
| 84 | --disable-tools |
---|
| 85 | |
---|
| 86 | Do not build the programs in the tools subdirectory. |
---|
[5] | 87 | |
---|
| 88 | --with-glpk[=PREFIX] |
---|
| 89 | |
---|
| 90 | Enable GLPK support (default). You should specify the prefix too if |
---|
| 91 | you installed GLPK to some non-standard location (e.g. your home |
---|
| 92 | directory). If it is not found, GLPK support will be disabled. |
---|
| 93 | |
---|
| 94 | --with-glpk-includedir=DIR |
---|
| 95 | |
---|
| 96 | The directory where the GLPK header files are located. This is only |
---|
| 97 | useful when the GLPK headers and libraries are not under the same |
---|
| 98 | prefix (which is unlikely). |
---|
| 99 | |
---|
| 100 | --with-glpk-libdir=DIR |
---|
| 101 | |
---|
| 102 | The directory where the GLPK libraries are located. This is only |
---|
| 103 | useful when the GLPK headers and libraries are not under the same |
---|
| 104 | prefix (which is unlikely). |
---|
| 105 | |
---|
| 106 | --without-glpk |
---|
| 107 | |
---|
| 108 | Disable GLPK support. |
---|
| 109 | |
---|
| 110 | --with-cplex[=PREFIX] |
---|
| 111 | |
---|
| 112 | Enable CPLEX support (default). You should specify the prefix too |
---|
| 113 | if you installed CPLEX to some non-standard location |
---|
| 114 | (e.g. /opt/ilog/cplex75). If it is not found, CPLEX support will be |
---|
| 115 | disabled. |
---|
| 116 | |
---|
| 117 | --with-cplex-includedir=DIR |
---|
| 118 | |
---|
| 119 | The directory where the CPLEX header files are located. This is |
---|
| 120 | only useful when the CPLEX headers and libraries are not under the |
---|
| 121 | same prefix (e.g. /usr/local/cplex/cplex75/include). |
---|
| 122 | |
---|
| 123 | --with-cplex-libdir=DIR |
---|
| 124 | |
---|
| 125 | The directory where the CPLEX libraries are located. This is only |
---|
| 126 | useful when the CPLEX headers and libraries are not under the same |
---|
| 127 | prefix (e.g. |
---|
| 128 | /usr/local/cplex/cplex75/lib/i86_linux2_glibc2.2_gcc3.0/static_pic_mt). |
---|
| 129 | |
---|
| 130 | --without-cplex |
---|
| 131 | |
---|
| 132 | Disable CPLEX support. |
---|
[245] | 133 | |
---|
| 134 | --with-soplex[=PREFIX] |
---|
| 135 | |
---|
| 136 | Enable SoPlex support (default). You should specify the prefix too if |
---|
| 137 | you installed SoPlex to some non-standard location (e.g. your home |
---|
| 138 | directory). If it is not found, SoPlex support will be disabled. |
---|
| 139 | |
---|
| 140 | --with-soplex-includedir=DIR |
---|
| 141 | |
---|
| 142 | The directory where the SoPlex header files are located. This is only |
---|
| 143 | useful when the SoPlex headers and libraries are not under the same |
---|
| 144 | prefix (which is unlikely). |
---|
| 145 | |
---|
| 146 | --with-soplex-libdir=DIR |
---|
| 147 | |
---|
| 148 | The directory where the SoPlex libraries are located. This is only |
---|
| 149 | useful when the SoPlex headers and libraries are not under the same |
---|
| 150 | prefix (which is unlikely). |
---|
| 151 | |
---|
| 152 | --without-soplex |
---|
| 153 | |
---|
| 154 | Disable SoPlex support. |
---|