-
Notifications
You must be signed in to change notification settings - Fork 66
/
configure.ac
377 lines (324 loc) · 11.2 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
368
369
370
371
372
373
374
375
376
377
dnl
dnl configure.in
dnl
dnl PLUTO - parallelism and locality transformer (experimental)
dnl
dnl Copyright (C) 2007-2008 Uday Bondhugula
dnl
dnl This program is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU General Public License
dnl as published by the Free Software Foundation; either version 2
dnl of the License, or (at your option) any later version.
dnl
dnl The complete GNU General Public Licence Notice can be found as the
dnl `COPYING' file in the top-level directory.
dnl
AC_PREREQ([2.69])
AC_INIT([pluto],[0.12.0],[[email protected]])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_MACRO_DIR([m4])
dnl pass 'foreign' since we have a README.md instead of README.
AM_INIT_AUTOMAKE([foreign])
AM_SILENT_RULES([yes])
AC_CONFIG_HEADERS(config.h)
# Define REL_SRCDIR_PREFIX to be used when invoking configure script
# of subprojects
case $srcdir in
. )
REL_SRCDIR_PREFIX=..
;;
[[\\/]]* | ?:[[\\/]]* )
REL_SRCDIR_PREFIX=$srcdir
;;
*)
REL_SRCDIR_PREFIX=../$srcdir
;;
esac
if test -n "${CXXFLAGS}"; then
user_set_cxxflags=yes
fi
dnl Determine a C++ compiler to use
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX(17, noext, mandatory)
if test X$user_set_cxxflags != Xyes; then
dnl Enable all warnings.
CXXFLAGS="-Wall"
fi
if test -n "${CFLAGS}"; then
user_set_cflags=yes
fi
dnl Determine a C compiler to use
AC_PROG_CC
if test X$user_set_cflags != Xyes; then
CFLAGS="-Wall"
fi
LT_INIT
AC_PROG_SED
debug="false"
dnl debugging flag
AC_ARG_ENABLE(debug,
[ --enable-debug enable compilation with debugging info ],
debug="true")
AM_CONDITIONAL(PLUTO_DEBUG, test x$debug = xtrue)
if test x$debug = x"true"; then
CXXFLAGS="$CXXFLAGS -g -O0"
CFLAGS="$CFLAGS -g -O0"
fi
dnl check for some compiler characteristics
dnl MC_CHECK_GUIDING_DECLS
AC_SUBST(GUIDING_DECLS)
dnl check for typedefs, structures, compiler features
AC_C_CONST
AC_CHECK_HEADERS(math.h stdlib.h stdio.h assert.h string.h)
dnl set BUILD_DIR to build directory
BUILD_DIR=`pwd`
AC_SUBST(BUILD_DIR)
dnl Offer --with-clang-prefix
AC_ARG_WITH(clang-prefix,
AS_HELP_STRING([--with-clang-prefix=DIR],[DIR location of clang install]),
[
CLANG_PREFIX="$withval";
external_clang=true
],
[external_clang=false]
)
AM_CONDITIONAL(EXTERNAL_CLANG, test x$external_clang = xtrue)
dnl TODO: check for FileCheck at other places.
AC_CHECK_PROG(FILECHECK,FileCheck,yes,no,"$CLANG_PREFIX/bin:$PATH:/usr/lib64/llvm")
AS_IF([test x"$FILECHECK" != x"yes"], [AC_MSG_ERROR([Please install LLVM FileCheck before configuring.])])
glpk="false"
dnl glpk flag
AC_ARG_ENABLE(glpk,
[ --enable-glpk enable ILP solving with GLPK], glpk="true")
gurobi="false"
dnl check for gurobi
AC_ARG_ENABLE(gurobi,
[ --enable-gurobi enable ILP solving with GUROBI], gurobi="true")
dnl Offer --with-glpk-prefix.
AC_ARG_WITH(glpk-prefix,
AS_HELP_STRING([--with-glpk-prefix=DIR],[DIR location of GLPK package]),
[CPPFLAGS="${CPPFLAGS} -I$withval/include";
LDFLAGS="${LDFLAGS} -L$withval/lib";
GLPK_PREFIX="$withval";
])
if test $glpk = "true"; then
dnl check for glpk
AC_CHECK_HEADER([glpk.h],[AC_DEFINE([GLPK],[1],[GLPK solver for solving ILP])]
CFLAGS="$CFLAGS -DGLPK" LDFLAGS="$LDFLAGS -lglpk"
CXXFLAGS="$CXXFLAGS -DGLPK"
, [AC_MSG_ERROR(glpk.h header not found)])
AC_CHECK_LIB([glpk], [glp_create_prob], []
, [AC_MSG_ERROR(GLPK library not found)])
fi
dnl Offer --with-gurobi-prefix.
AC_ARG_WITH(gurobi-prefix,
AS_HELP_STRING([--with-gurobi-prefix=DIR],[DIR location of GUROBI package]),
[CPPFLAGS="${CPPFLAGS} -I$withval/include";
LDFLAGS="${LDFLAGS} -L$withval/lib";
# MAJOR_VERSION=`cat $withval/include/gurobi_c.h| grep VERSION_MAJOR`;
# echo "major version = ${MAJOR_VERSION}";
# LIBS="-lgurobi75 $LIBS";
GUROBI_PREFIX="$withval";
])
if test $gurobi = "true"; then
dnl check for gurobi
AC_CHECK_HEADER([gurobi_c.h],[AC_DEFINE([GUROBI],[1],[GUROBI solver for solving ILP])]
major_version=`cat $GUROBI_PREFIX/include/gurobi_c.h| grep VERSION_MAJOR| awk '{print $3}'`
minor_version=`cat $GUROBI_PREFIX/include/gurobi_c.h| grep VERSION_MINOR| awk '{print $3}'`
grb_version=gurobi$major_version$minor_version
CFLAGS="$CFLAGS -DGUROBI" LDFLAGS="$LDFLAGS -l$grb_version"
CXXFLAGS="$CXXFLAGS -DGUROBI"
, [AC_MSG_ERROR(gurobi_c.h header not found)])
AC_CHECK_LIB([$grb_version], [GRBnewmodel], []
, [AC_MSG_ERROR(Gurobi library not found)])
fi
dnl Offer --with-gmp-prefix.
AC_ARG_WITH(gmp-prefix,
AS_HELP_STRING([--with-gmp-prefix=DIR],[DIR Location of GMP package]),
[CPPFLAGS="${CPPFLAGS} -I$withval/include";
LDFLAGS="${LDFLAGS} -L$withval/lib";
LIBS="-lgmp $LIBS";
GMP_PREFIX="$withval";
])
AC_CHECK_HEADER(gmp.h,
[AC_CHECK_LIB(gmp,main,
[poly_cv_gmpfatal="no"],
[poly_cv_gmpfatal="yes"])],
[poly_cv_gmpfatal="yes"])
dnl Request arch flag
ARCHGIVEN="false"
AC_ARG_WITH(gcc-arch,
AS_HELP_STRING([--with-gcc-arch=ARCH],[ARCH Architecture to compile pluto for (march, mcpu etc.]),
[ARCHGIVEN="true";
ARCH="$withval";])
archopts=""
if test $ARCHGIVEN = "true"; then
archopts="--with-gcc-arch=$ARCH"
fi
if test "$poly_cv_gmpfatal" = "yes"; then
AC_MSG_ERROR([GMP not found])
else
AC_CHECK_DECLS(mp_get_memory_functions,[],[
AC_LIBOBJ(mp_get_memory_functions)
],[#include <gmp.h>
])
fi
dnl clan, candl, piplib, cloog are all configured with 64-bit data type support
dnl NOTE: configuring these 64-bit data type support has nothing to do with arch
dnl being 32-bit/64-bit
dnl Configuring PipLib (long long int is 64 bits)
echo ""
echo "=========================="
echo "Configuring PipLib"
echo "=========================="
configureopts="--with-gmp --with-bits=64 \
--with-gmp-prefix=$GMP_PREFIX \
--prefix=$prefix"
(mkdir -p piplib
cd piplib/
$RM config.cache;
$REL_SRCDIR_PREFIX/piplib/configure ${configureopts} ${archopts}
)
dnl Configuring Openscop
echo ""
echo "=========================="
echo "Configuring Openscop"
echo "=========================="
configureopts="--with-gmp=system \
--with-gmp-prefix=$GMP_PREFIX \
--prefix=$prefix"
(mkdir -p openscop
cd openscop/
$REL_SRCDIR_PREFIX/openscop/configure ${configureopts} ${archopts}
)
dnl Configuring Clan-osl
echo ""
echo "=========================="
echo "Configuring Clan"
echo "=========================="
configureopts="--prefix=$prefix \
--with-osl=build \
--with-osl-builddir=../openscop"
(mkdir -p clan
cd clan/
$REL_SRCDIR_PREFIX/clan/configure ${configureopts} ${archopts}
)
dnl check if clan configure failed
AC_CHECK_FILE([clan/Makefile], [], [AC_MSG_ERROR([configure in clan/ failed])])
dnl Configuring Candl-osl
dnl can't enable the gmp version without modifying
dnl the precision the is used elsewhere in pluto
echo ""
echo "=========================="
echo "Configuring Candl"
echo "=========================="
configureopts="--enable-llint-version \
--prefix=$prefix \
--with-gmp-prefix=$GMP_PREFIX \
--with-piplib=build \
--with-piplib-builddir=../piplib \
--with-osl=build \
--with-osl-builddir=../openscop"
(mkdir -p candl
cd candl/
$REL_SRCDIR_PREFIX/candl/configure ${configureopts} ${archopts}
)
dnl Configuring polylib
echo ""
echo "======================"
echo "Configuring polylib"
echo "======================"
configureopts="--enable-longlongint-lib \
--prefix=$prefix"
(mkdir -p polylib
cd polylib/
$REL_SRCDIR_PREFIX/polylib/configure ${configureopts}
)
AC_SUBST(ISL_INCLUDE)
AC_SUBST(ISL_LDFLAGS)
AC_SUBST(ISL_LIBADD)
dnl Provide --with-isl-prefix
AC_ARG_WITH(isl-prefix,
AS_HELP_STRING([--with-isl-prefix=DIR],[DIR location where isl is installed]),
[isl_prefix=$withval;
ISL_INCLUDE="-I$withval/include";
ISL_LDFLAGS="-L$withval/lib";
ISL_LIBADD="$withval/lib/libisl.la";
external_isl=true
],
[external_isl=false])
AM_CONDITIONAL(EXTERNAL_ISL, test x$external_isl = xtrue)
if test x$external_isl = xfalse; then
dnl Configuring isl
dnl the current isl submodule still supports the piplib
dnl options, but the trunk of isl doesn't
echo ""
echo "======================"
echo "Configuring isl"
echo "======================"
configureopts="--with-gmp=system \
--with-gmp-prefix=$GMP_PREFIX \
--with-gmp-exec-prefix=$GMP_PREFIX \
--prefix=$prefix"
(mkdir -p isl
cd isl/
$REL_SRCDIR_PREFIX/isl/configure ${configureopts} ${archopts}
)
fi
dnl Configure PET
echo -e "\n=========================="
echo "Configuring PET"
echo "=========================="
if test x$external_clang = xtrue; then
configureopts="CXXFLAGS=-fno-rtti --with-clang-prefix=$CLANG_PREFIX --with-clang-exec-prefix=$CLANG_PREFIX --with-isl-builddir=../isl --prefix=$prefix"
else
configureopts="CXXFLAGS=-fno-rtti --with-isl-builddir=../isl --prefix=$prefix"
fi
(mkdir -p pet
cd pet && $REL_SRCDIR_PREFIX/pet/configure ${configureopts})
dnl check if pet configure had failed
AC_CHECK_FILE([pet/Makefile], [], [AC_MSG_ERROR([configure in pet/ failed])])
dnl Configuring Cloog 0.14.1 (long long int)
echo ""
echo "=========================="
echo "Configuring Cloog-isl"
echo "=========================="
if test x$external_isl = xfalse; then
configureopts="--with-isl=build \
--with-isl-builddir=../isl \
--with-gmp=system \
--with-gmp-prefix=$GMP_PREFIX \
--with-osl=build \
--with-osl-builddir=../openscop \
--prefix=$prefix"
else
configureopts="--with-isl=system \
--with-isl-prefix=$isl_prefix \
--with-gmp=system \
--with-gmp-prefix=$GMP_PREFIX \
--with-osl=build \
--with-osl-builddir=../openscop \
--prefix=$prefix"
fi
(mkdir -p cloog-isl
cd cloog-isl/
$REL_SRCDIR_PREFIX/cloog-isl/configure ${configureopts} ${archopts}
)
AC_PATH_PROGS(BASH, bash)
AC_CONFIG_FILES([getversion.sh], [chmod +x ./getversion.sh])
AC_CONFIG_FILES([test.sh], [chmod +x ./test.sh])
AC_CONFIG_COMMANDS([version.h],
[echo '#define PLUTO_VERSION "'`./getversion.sh`'"' > lib/version.h])
AC_CONFIG_FILES([Makefile \
lib/Makefile \
tool/Makefile \
polycc.sh
])
AC_OUTPUT
echo " /*-----------------------------------------------*"
echo " * PLUTO configuration is OK *"
echo " *-----------------------------------------------*/"
echo "Your system is ready to compile PLUTO"
echo "Run 'make' next to compile"
echo "Then, run 'make check-pluto' to check if everything is working correctly"
echo "Use polycc (see README)"