forked from coin-or/Cbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
367 lines (313 loc) · 15.5 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# Copyright (C) 2006, 2007 International Business Machines.
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
#
# Author: Andreas Waechter IBM 2006-04-13
#############################################################################
# Names and other basic things #
#############################################################################
AC_INIT([Cbc],[devel],[https://github.com/coin-or/Cbc/issues/new],[coin-or-cbc],[https://github.com/coin-or/Cbc])
AC_COPYRIGHT([
Copyright 2006 International Business Machines and others.
All Rights Reserved.
This file is part of the open source package Coin which is distributed
under the Eclipse Public License.])
# List one file in the package so that the configure script can test
# whether the package is actually there.
AC_CONFIG_SRCDIR(src/CbcTree.hpp)
# Do some initialization work (version numbers, change prefix default, ...)
AC_COIN_INITIALIZE
#############################################################################
# Standard build tool stuff #
#############################################################################
# Get the name of the C++ compiler and appropriate compiler options
AC_COIN_PROG_CXX
# Initialize libtool
AC_COIN_PROG_LIBTOOL
# set RPATH_FLAGS to the compiler link flags required to hardcode location
# of the shared objects (expanded_libdir is set somewhere in configure before)
# (use in examples Makefile)
AC_COIN_RPATH_FLAGS([$expanded_libdir])
#############################################################################
# Math headers #
#############################################################################
# Check for cmath/math.h, cfloat/float.h, cieeefp/ieeefp.h
AC_COIN_CHECK_MATH_HDRS
#############################################################################
# Debug info #
#############################################################################
AC_CHECK_HEADERS([execinfo.h])
AC_CHECK_HEADERS([signal.h])
#############################################################################
# COIN-OR components #
#############################################################################
m4_foreach_w([myvar],[CoinUtils Osi Cgl Clp],
[ AC_COIN_CHK_PKG(myvar,[CbcLib OsiCbcLib])
if test $coin_has_[]m4_tolower(myvar) != yes ; then
AC_MSG_ERROR([Required package myvar is not available.])
fi
])
AC_COIN_CHK_PKG(OsiClp,[CbcLib OsiCbcLib],[osi-clp])
if test $coin_has_osiclp != yes ; then
AC_MSG_ERROR("Required package OsiClp unavailable.")
fi
# Optional package for command line edit support
AC_COIN_CHK_GNU_READLINE([CbcLib])
#############################################################################
# Other third party software #
#############################################################################
# Ampl Solver library
AC_COIN_CHK_PKG(ASL,[CbcLib],[coinasl])
# Nauty library (for symmetry detection).
AC_COIN_CHK_PKG([Nauty],[CbcLib],[nauty])
#############################################################################
# The rest are not required for linking against Cbc but are used for the unit
# test. For the data packages, we just want XXX_DATA for use in Makefile.am.
AC_COIN_CHK_PKG(OsiTests,[CbcUnitTest],[osi-unittests])
AC_COIN_CHK_PKG(Sample,,[coindatasample],,dataonly)
AC_COIN_CHK_PKG(Netlib,,[coindatanetlib],,dataonly)
AC_COIN_CHK_PKG(Miplib3,,[coindatamiplib3],,dataonly)
#############################################################################
# LP solvers other than CLP #
#############################################################################
# Check which other LP solvers are available, some of them become a dependency
# of CbcGeneric
#AC_COIN_CHK_PKG(OsiDyLP,[CbcGeneric OsiCbcLib],[osi-dylp])
#AC_COIN_CHK_PKG(OsiCpx,[CbcLib CbcGeneric OsiCbcLib],[osi-cplex])
#AC_COIN_CHK_PKG(OsiGlpk,[CbcGeneric OsiCbcLib],[osi-glpk])
##AC_COIN_CHK_PKG(OsiGrb,,[osi-gurobi])
#AC_COIN_CHK_PKG(OsiMsk,[CbcGeneric OsiCbcLib],[osi-mosek])
#AC_COIN_CHK_PKG(OsiSpx,[CbcGeneric OsiCbcLib],[osi-soplex])
#AC_COIN_CHK_PKG(OsiXpr,,[osi-xpress])
AC_COIN_CHK_LIB(Cplex,[CbcLib],[-lcplex -lpthread -lm -ldl],[],[],[CPXgetstat])
AC_COIN_FINALIZE_FLAGS([CbcLib OsiCbcLib CbcUnitTest])
#############################################################################
# CbcGeneric configuration #
#############################################################################
# Are we building cbc-generic? Default is no (false).
dnl AC_ARG_ENABLE([cbc-generic],
dnl AS_HELP_STRING([--enable-cbc-generic],[enables build of cbc-generic]),
dnl [cbc_generic=$enableval],
dnl [cbc_generic=no])
dnl AM_CONDITIONAL(CBC_BUILD_CBC_GENERIC, test "$cbc_generic" = yes)
dnl if test "$cbc_generic" = yes ; then
dnl # Set the default solver for cbc-generic. In theory, any OsiXXX should work.
dnl # In practice, only thoselisted below have had any testing long long ago or never.
dnl AC_MSG_CHECKING(for cbc-generic default solver)
dnl AC_ARG_WITH([cbc-generic-solver],
dnl AS_HELP_STRING([--with-cbc-generic-solver],[specify default solver for cbc-generic in lower case letters (if not given, clp is assumed)]),
dnl [cbc_default_solver=$withval],
dnl [cbc_default_solver=clp])
dnl AC_MSG_RESULT($cbc_default_solver)
dnl case $cbc_default_solver in
dnl clp) ;;
dnl cplex) ;;
dnl dylp) ;;
dnl glpk) ;;
dnl highs) ;;
dnl mosek) ;;
dnl soplex) ;;
dnl *) AC_MSG_WARN([Unrecognised solver $cbc_default_solver chosen as cbc-generic default solver.])
dnl ;;
dnl esac
dnl AC_DEFINE_UNQUOTED([CBC_DEFAULT_SOLVER],"$cbc_default_solver",
dnl [Define to the name of the default solver to be used in cbc-generic in small letters])
dnl AC_MSG_NOTICE([building cbc-generic with default solver $cbc_default_solver])
dnl fi
#############################################################################
# Cbc parallel configuration #
#############################################################################
# First we define a new option, --enable-cbc-parallel
AC_ARG_ENABLE([cbc-parallel],
[AS_HELP_STRING([--disable-cbc-parallel],[disables compilation of the SMP version of Cbc])],
[enable_cbc_parallel=$enableval],
[enable_cbc_parallel=auto])
if test "$enable_cbc_parallel" != no; then
# Define the preprocessor macro
case "$CXX" in
*cl) # Windows / cl: look for pthreadsw32 lib
AC_COIN_CHK_LIB(pthreadsw32,[CbcLib CbcSolverLib],[pthreadVCE2.lib],[],[],[pthread_create])
if test "$coin_has_pthreadsw32" = yes ; then
enable_cbc_parallel=yes
elif test "$enable_cbc_parallel" = yes ; then
AC_MSG_ERROR([--enable-cbc-parallel selected, but pthreads-w32 unavailable])
else
enable_cbc_parallel=no
fi
;;
*) # not Windows / cl: look for pthread lib
AC_CHECK_LIB([pthread],[pthread_create],
[CBCLIB_LFLAGS="-lpthread $CBCLIB_LFLAGS"
enable_cbc_parallel=yes],
[if test "$enable_cbc_parallel" = yes ; then
AC_MSG_ERROR([--enable-cbc-parallel selected, but -lpthreads unavailable])
else
enable_cbc_parallel=no
fi])
if test "$enable_cbc_parallel" = yes ; then
AC_CHECK_LIB([rt],[clock_gettime],
[CBCLIB_LFLAGS="-lrt $CBCLIB_LFLAGS"
AC_DEFINE([HAVE_CLOCK_GETTIME],[1],[Define if clock_gettime and rt library is available])],
[AC_MSG_WARN([SMP version of Cbc selected, but -lrt unavailable; using gettimeofday instead of clock_gettime])])
fi
AM_CONDITIONAL(COIN_HAS_PTHREADSW32, false)
;;
esac
else
AM_CONDITIONAL(COIN_HAS_PTHREADSW32, false)
fi
if test "$enable_cbc_parallel" = yes ; then
AC_DEFINE([CBC_THREAD],[1],[Define to 1 if the SMP version of Cbc should be compiled])
AC_MSG_NOTICE([Cbc multithreading enabled]);
fi
##############################################################################
# OsiCbc configuration #
##############################################################################
# Handles configuration of the underlying default solver in OsiCbc. The issue
# is that OsiCbc defines a default solver, used when the client does not
# specify a solver in the constructor. The default solver must, therefore,
# be present in the build. This macro checks that this is true, and sets the
# compile-time symbols OSICBC_DFLT_SOLVER, OSICBC_CLP_DFLT_SOLVER, and
# OSICBC_DFLT_SOLVER_HPP that control the build. The parameter default_solver
# should normally be clp, unless you're working on some other solver.
# Ideally, this macro would not require enumeration of solvers, but the
# effort required to avoid it is just not justified at present. One enumeration
# is hidden in AC_OSI_CANONICAL. The other is visible, the AM_CONDITIONAL
# list at the end.
# In an ideal world this macro would do absolutely nothing if Cbc is not
# present, but autotools is not an ideal world and we have to satisfy its
# requirements. In particular, the AM_CONDITIONAL macros need to execute or
# automake will complain. Really the only thing we need to suppress is the
# check that the default solver exists. All the rest is irrelevant when Cbc
# isn't present (hence OsiCbc will be configured but not actually compiled).
# Process the with-osicbc-default-solver option.
AC_ARG_WITH([osicbc-default-solver],
AS_HELP_STRING([--with-osicbc-default-solver],
[specify underlying solver for OsiCbc (default clp)]),
[osicbc_with_solver=$withval],
[osicbc_with_solver=clp])
case "${osicbc_with_solver}" in
@<:@Cc@:>@@<:@Ll@:>@@<:@Pp@:>@*)
osi_lc_solver=clp ;
osi_mc_solver=Clp ;
osi_uc_solver=CLP ;
osi_exists_solver=${coin_has_osiclp-"unavailable"}
;;
@<:@Dd@:>@@<:@Yy@:>@@<:@Ll@:>@@<:@Pp@:>@*)
osi_lc_solver=dylp ;
osi_mc_solver=Dylp
osi_uc_solver=DYLP
osi_exists_solver=${coin_has_osidylp-"unavailable"}
;;
@<:@Cc@:>@@<:@Pp@:>@@<:@Xx@:>@*)
osi_lc_solver=cpx ;
osi_mc_solver=Cpx
osi_uc_solver=CPX
osi_exists_solver=${coin_has_osicpx-"unavailable"}
;;
@<:@Gg@:>@@<:@Ll@:>@@<:@Pp@:>@@<:@Kk@:>@*)
osi_lc_solver=glpk ;
osi_mc_solver=Glpk
osi_uc_solver=GLPK
osi_exists_solver=${coin_has_osiglpk-"unavailable"}
;;
@<:@Gg@:>@@<:@Rr@:>@@<:@Bb@:>@*)
osi_lc_solver=grb ;
osi_mc_solver=Grb ;
osi_uc_solver=GRB ;
osi_exists_solver=${coin_has_osigrb-"unavailable"}
;;
@<:@H@:>@@<:@i@:>@@<:@g@:>@@<:@h@:>@@<:@s@:>@*)
osi_lc_solver=highs ;
osi_mc_solver=HiGHS ;
osi_uc_solver=HIGHS ;
osi_exists_solver=${coin_has_highs-"unavailable"}
;;
@<:@Mm@:>@@<:@Ss@:>@@<:@Kk@:>@*)
osi_lc_solver=msk ;
osi_mc_solver=Msk
osi_uc_solver=MSK
osi_exists_solver=${coin_has_osimsk-"unavailable"}
;;
@<:@Ss@:>@@<:@Pp@:>@@<:@Xx@:>@*)
osi_lc_solver=spx ;
osi_mc_solver=Spx
osi_uc_solver=SPX
osi_exists_solver=${coin_has_osispx-"unavailable"}
;;
@<:@Ss@:>@@<:@Yy@:>@@<:@Mm@:>@*)
osi_lc_solver=sym ;
osi_mc_solver=Sym
osi_uc_solver=SYM
osi_exists_solver=${coin_has_osisym-"unavailable"}
;;
@<:@Xx@:>@@<:@Pp@:>@@<:@Rr@:>@*)
osi_lc_solver=xpr ;
osi_mc_solver=Xpr
osi_uc_solver=XPR
osi_exists_solver=${coin_has_osixpr-"unavailable"}
;;
*)
osi_lc_solver=clp ;
osi_mc_solver=Clp ;
osi_uc_solver=CLP ;
osi_exists_solver=${coin_has_osiclp-"unavailable"}
AC_MSG_WARN([Unrecognised solver $1; defaulting to $osi_lc_solver.])
;;
esac
# Check that the requested solver is available.
if test $osi_exists_solver = no; then
AC_MSG_ERROR([selected default solver $osicbc_with_solver is unavailable.
Please select an available solver using the --with-osicbc-default-solver option.])
fi
# State the result.
AC_MSG_NOTICE([OsiCbc default solver is $osi_lc_solver])
# And set the configuration variables.
AC_DEFINE_UNQUOTED([OSICBC_DFLT_SOLVER],
[Osi${osi_mc_solver}SolverInterface],
[define to the name of the default solver interface class, e.g., OsiClpSolverInterface])
AC_DEFINE_UNQUOTED([OSICBC_DFLT_SOLVER_HPP],
["Osi${osi_mc_solver}SolverInterface.hpp"],
[define to the name of the .hpp file for the default solver interface class, e.g., "OsiClpSolverInterface.hpp" (include quotes)])
if test $osi_mc_solver = "Clp"; then
AC_DEFINE([OSICBC_DFLT_SOLVER_CLP],[1],[define this symbol if clp is the default solver])
fi
# Last but not least, we need automake conditionals.
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_CLP],[test $osi_mc_solver = Clp])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_CPX],[test $osi_mc_solver = Cpx])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_DYLP],[test $osi_mc_solver = Dylp])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_GLPK],[test $osi_mc_solver = Glpk])
#AM_CONDITIONAL([OSICBC_DFLT_SOLVER_GRB],[test $osi_mc_solver = Grb])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_HIGHS],[test $osi_mc_solver = HiGHS])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_MSK],[test $osi_mc_solver = Msk])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_SPX],[test $osi_mc_solver = Spx])
AM_CONDITIONAL([OSICBC_DFLT_SOLVER_SYM],[test $osi_mc_solver = Sym])
#AM_CONDITIONAL([OSICBC_DFLT_SOLVER_XPR],[test $osi_mc_solver = Xpr])
##############################################################################
# VPATH links for example input files #
##############################################################################
# In case this is a VPATH configuration we need to make sure that the
# input files for the examples are available in the VPATH directory.
AC_COIN_VPATH_LINK(examples/sudoku_sample.csv)
#############################################################################
# Check for doxygen #
#############################################################################
AC_COIN_DOXYGEN([CoinUtils Osi Clp DyLP Cgl])
##############################################################################
# Finishing up by writing all the output #
##############################################################################
# Here list all the files that configure should create (except for the
# configuration header file)
AC_CONFIG_FILES([Makefile
examples/Makefile
src/Makefile
src/OsiCbc/Makefile
test/Makefile
cbc.pc
osi-cbc.pc])
AC_CONFIG_FILES([doxydoc/doxygen.conf])
# Here put the location and name of the configuration header file
AC_CONFIG_HEADERS([src/config.h src/config_cbc.h src/OsiCbc/config_osicbc.h])
AC_COIN_FINALIZE_FLAGS([CbcLib CbcSolverLib CbcGeneric OsiCbcLib CbcUnitTest])
# Finally, we let configure write all the output...
AC_COIN_FINALIZE