... | ... |
@@ -152,24 +152,46 @@ |
152 | 152 |
Disable SoPlex support. |
153 | 153 |
|
154 | 154 |
--with-coin[=PREFIX] |
155 | 155 |
|
156 | 156 |
Enable support for COIN-OR solvers (CLP and CBC). You should |
157 | 157 |
specify the prefix too. (by default, COIN-OR tools install |
158 | 158 |
themselves to the source code directory). This command enables the |
159 | 159 |
solvers that are actually found. |
160 | 160 |
|
161 | 161 |
--with-coin-includedir=DIR |
162 | 162 |
|
163 | 163 |
The directory where the COIN-OR header files are located. This is |
164 | 164 |
only useful when the COIN-OR headers and libraries are not under |
165 | 165 |
the same prefix (which is unlikely). |
166 | 166 |
|
167 | 167 |
--with-coin-libdir=DIR |
168 | 168 |
|
169 | 169 |
The directory where the COIN-OR libraries are located. This is only |
170 | 170 |
useful when the COIN-OR headers and libraries are not under the |
171 | 171 |
same prefix (which is unlikely). |
172 | 172 |
|
173 | 173 |
--without-coin |
174 | 174 |
|
175 | 175 |
Disable COIN-OR support. |
176 |
|
|
177 |
|
|
178 |
Makefile Variables |
|
179 |
================== |
|
180 |
|
|
181 |
Some Makefile variables are reserved by the GNU Coding Standards for |
|
182 |
the use of the "user" - the person building the package. For instance, |
|
183 |
CXX and CXXFLAGS are such variables, and have the same meaning as |
|
184 |
explained in the previous section. These variables can be set on the |
|
185 |
command line when invoking `make' like this: |
|
186 |
`make [VARIABLE=VALUE]...' |
|
187 |
|
|
188 |
WARNINGCXXFLAGS is a non-standard Makefile variable introduced by us |
|
189 |
to hold several compiler flags related to warnings. Its default value |
|
190 |
can be overridden when invoking `make'. For example to disable all |
|
191 |
warning flags use `make WARNINGCXXFLAGS='. |
|
192 |
|
|
193 |
In order to turn off a single flag from the default set of warning |
|
194 |
flags, you can use the CXXFLAGS variable, since this is passed after |
|
195 |
WARNINGCXXFLAGS. For example to turn off `-Wold-style-cast' (which is |
|
196 |
used by default when g++ is detected) you can use |
|
197 |
`make CXXFLAGS="-g -O2 -Wno-old-style-cast"'. |
0 comments (0 inline)