-
Notifications
You must be signed in to change notification settings - Fork 15
/
configure.ac
356 lines (296 loc) · 10.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
AC_INIT([nanox], [0.16a], [pm-tools@bsc.es])
AC_LANG([C++])
AC_CONFIG_SRCDIR([src/core/system.cpp])
nanox_configure_args="$0 $@"
AC_DEFINE_UNQUOTED([NANOX_CONFIGURE_ARGS], ["$nanox_configure_args"], [Configure line])
# Environment
AC_CANONICAL_HOST
# Automake initialization
AM_INIT_AUTOMAKE([-Wall dist-bzip2 -Wno-portability subdir-objects foreign])
AC_CONFIG_MACRO_DIR([m4])
# Enable silent rules if available
supported_silent_rules=1
m4_ifdef([AM_SILENT_RULES],
[AM_SILENT_RULES([yes])],
[supported_silent_rules=0])
AM_CONDITIONAL([SUPPORTED_SILENT_RULES], test x$supported_silent_rules = x1)
# Nanos version check
# Make sure build_version is double-quoted!
AS_IF([test -e "$srcdir/.git"],[
# Git directory found
AC_PATH_PROG([GIT], [git], [])
AC_MSG_CHECKING([revision of git repository])
# If git executable is found in path read HEAD version
AS_IF([test "$GIT" != ""],[
echo "$GIT" "$srcdir" >& AS_MESSAGE_LOG_FD
gitversion=$($GIT --git-dir=$srcdir/.git log --pretty='format:%h %ci' -1)
gitbranch=$($GIT --git-dir=$srcdir/.git rev-parse --abbrev-ref HEAD)
build_version="\"git $gitbranch $gitversion developer version\""
],[
# Git executable not found
build_version="\"unknown git commit\""
])
AC_MSG_RESULT([$build_version])
],[
AS_IF([test -e "$srcdir/VERSION"],[
AC_MSG_CHECKING([revision of distributed release])
run_gitversion=`cat $srcdir/VERSION`
build_version="\"$run_gitversion\""
AC_MSG_RESULT([$build_version])
],[
build_version="\"unknown revision\""
])
])
AC_SUBST([NANOX_BUILD_VERSION],[$build_version])
AC_DEFINE_UNQUOTED([NANOX_BUILD_VERSION], [$build_version], [Build version])
# Debian release
AC_CHECK_PROG([DEB_RELEASE], [lsb_release], [$(lsb_release -sc)], [])
AC_SUBST([DEB_RELEASE])
# Set compiler default flags
: ${CFLAGS=""}
: ${CXXFLAGS=""}
# ------------------
# Check for programs
# ------------------
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
LT_PATH_LD
AM_PROG_AS
AC_PROG_SED
# AM_PROG_AR must be called before LT_INIT or a warning ensues
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
# Turn off static libraries.
LT_INIT([disable-static])
# --------------------------------
# Compiler and flag checks
# --------------------------------
# Check for atomic builtins in GCC
AC_CHECK_GXX_LEGACY_ATOMIC_BUILTINS()
AC_CHECK_GXX_NEW_ATOMIC_BUILTINS()
# Check for typedefs, structures, and compiler characteristics
AC_C_CONST
# Compiler dependent Configuration flags
AX_CONFIG_CC
# --------------------------------
# Python for lit check
# --------------------------------
AM_PATH_PYTHON
AX_COMPARE_VERSION([$PYTHON_VERSION], [ge], [2.7], [lit=yes], [lit=no])
AM_CONDITIONAL([LIT_SUPPORT], [test "x$lit" = xyes])
## -----------------------
## Check host architecture
## -----------------------
OPTIONS=
ARCHITECTURES=
AX_CHECK_HOST_ARCH
AC_SUBST([OPTIONS])
AC_SUBST([ARCHITECTURES])
# -------------------
# Check for libraries
# -------------------
# Pthreads
AX_PTHREAD
# MPI
AX_CHECK_MPI
# GASNet
AX_CHECK_GASNET
# Memkind
AX_CHECK_MEMKIND
# Check if NVidia CUDA device has been selected
AX_CHECK_CUDA
# Check if OpenCL device has been selected
AX_CHECK_OPENCL
# Check if SQLite3 has been selected
AX_CHECK_SQLITE3
# Check hwloc availability
AX_CHECK_HWLOC
# Check for DLB support
AX_CHECK_DLB
# Check for Zynq Xilinx DMA driver library (fpga)
AX_CHECK_XDMA
# Enable Task callback feature
AX_ENABLE_TASK_CALLBACK
# Extrae check
AX_CHECK_EXTRAE
# Papi check
AX_CHECK_PAPI
# Check NextSim support
AC_MSG_CHECKING([for NextSim])
AC_ARG_WITH([nextsim],
AS_HELP_STRING([--with-nextsim=dir], [Directory of NextSim installation]),
[], dnl Implicit: with_nextsim=$enableval
[with_nextsim=no]
)
AC_MSG_RESULT([$with_nextsim])
AS_IF([test -d "x$with_nextsim"], [
NEXTSIM_HOME="$with_nextsim"
NEXTSIM_INC="$with_nextsim/include"
])
AC_SUBST([NEXTSIM_HOME])
AC_SUBST([NEXTSIM_INC])
AM_CONDITIONAL([instrumentation_NEXTSIM], [test x"$with_nextsim" != xno])
# Check Ayudame support
AC_MSG_CHECKING([for Ayudame])
AC_ARG_WITH([ayudame],
AS_HELP_STRING([--with-ayudame=dir], [Directory of Ayudame installation]),
[], dnl Implicit: with_ayudame=$enableval
[with_ayudame=no]
)
AC_MSG_RESULT([$with_ayudame])
AS_IF([test -d "x$with_ayudame"], [
AYUDAME_HOME="$with_ayudame"
AYUDAME_INC="$with_ayudame/include"
AYUDAME_LIB="$with_ayudame/lib"
AYUDAME_BIN="$with_ayudame/bin"
])
AC_SUBST([AYUDAME_HOME])
AC_SUBST([AYUDAME_INC])
AC_SUBST([AYUDAME_LIB])
AC_SUBST([AYUDAME_BIN])
AM_CONDITIONAL([instrumentation_AYUDAME], [test x"$with_ayudame" != xno])
# Check for Chapel support
AC_MSG_CHECKING([for Chapel])
AC_ARG_WITH([chapel],
AS_HELP_STRING([--with-chapel=dir], [Directory of Chapel installation]),
[], dnl Implicit: with_chapel=$enableval
[with_chapel=no]
)
AC_MSG_RESULT([$with_chapel])
AS_IF([test -d "x$with_chapel"], [
CHAPEL_HOME="$with_chapel"
])
AC_SUBST([CHAPEL_HOME])
AM_CONDITIONAL([CHAPEL_SUPPORT], [test x"$with_chapel" != xno])
# Check for Mercurium support
AC_MSG_CHECKING([for Mercurium])
AC_ARG_WITH([mcc],
AS_HELP_STRING([--with-mcc=dir], [Directory of Mercurium compiler]),
[], dnl Implicit: with_mcc=$enableval
[with_mcc=no]
)
AC_MSG_RESULT([$with_mcc])
AS_IF([test -d "x$with_mcc"], [
MCC="$with_mcc/bin/mcc"
MCXX="$with_mcc/bin/mcxx"
])
AC_SUBST([MCC])
AC_SUBST([MCXX])
AM_CONDITIONAL([MCC_SUPPORT], [test x"$with_mcc" != xno])
# Check MKL Support
AC_CHECK_LIB([mkl_sequential],[mkl_blas_dgemm],[MKL_LIBS="-lm -lmkl_core -lmkl_sequential"],[MKL_LIBS=""],[-lm -lmkl_core])
AM_CONDITIONAL([MKL_SUPPORT], test "$MKL_LIBS"x != x )
AC_SUBST([MKL_LIBS])
# Build versions
AX_BUILD_VERSIONS
# Allocator support
AC_MSG_CHECKING([if Nanos++ Allocator has been enabled])
AC_ARG_ENABLE([allocator], [AS_HELP_STRING([--enable-allocator], [Enables Allocator module])],
[], dnl Implicit: enable_allocator=$enableval
[enable_allocator="no"])
AC_MSG_RESULT([$enable_allocator])
AS_IF([test "$enable_allocator" = yes],[
AC_DEFINE([NANOS_USE_ALLOCATOR],[1],[Specifies whether Nanos++ allocator has been enabled])
])
# Memtracker support
AC_MSG_CHECKING([if Nanos++ Memtracker has been enabled])
AC_ARG_ENABLE([memtracker], [AS_HELP_STRING([--enable-memtracker], [Enables Memtracker module])],
[], dnl Implicit: enable_memtracker=$enableval
[enable_memtracker="no"])
AC_MSG_RESULT([$enable_memtracker])
AS_IF([test "$enable_memtracker" = xyes],[
AC_DEFINE([NANOS_MEMTRACKER_ENABLED],[1],[Specifies whether Nanos++ memtracker module has been enabled])
AC_SUBST([NANOS_MEMTRACKER_ENABLED], [NANOS_MEMTRACKER_ENABLED])
], [
AC_SUBST([NANOS_MEMTRACKER_ENABLED], [NO_NANOS_MEMTRACKER_ENABLED])
])
# Task-level resiliency support
AC_MSG_CHECKING([if task resiliency is enabled])
AC_ARG_ENABLE([resiliency],[AS_HELP_STRING([--enable-resiliency], [Enables task-level resiliency])],
[enable_resiliency=$enableval],[enable_resiliency=no])
AC_MSG_RESULT([$enable_resiliency])
AS_IF([test $enable_resiliency = yes],[
AX_CHECK_COMPILE_FLAG([-fnon-call-exceptions],
[],
[AC_MSG_ERROR([resiliency mechanism depends on using compiler flag -fnon-call-exceptions])],
[-Werror])
AC_DEFINE([NANOS_RESILIENCY_ENABLED],[],[Indicates whether resiliency features should be used or not.])
AC_SUBST([NANOS_RESILIENCY_ENABLED],[NANOS_RESILIENCY_ENABLED])
resiliency_flags=-fnon-call-exceptions
], [
AC_SUBST([NANOS_RESILIENCY_ENABLED],[NO_NANOS_RESILIENCY_ENABLED])
])
AC_SUBST([enable_resiliency])
AC_SUBST([resiliency_flags])
# Generate plugin list
PLUGINS="plugins pms arch/$OS"
for arch in $ARCHITECTURES; do
PLUGINS+=" arch/$arch"
done
AC_SUBST([PLUGINS])
# Output files
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
doc/Makefile
doc/doxy-nanox
scripts/Makefile
src/Makefile
src/core/Makefile
src/support/Makefile
src/apis/Makefile
src/pms/Makefile
src/plugins/Makefile
src/arch/Makefile
src/arch/unix-os/Makefile
src/arch/smp/Makefile
src/arch/cluster/Makefile
src/arch/fpga/Makefile
src/arch/spu/Makefile
src/arch/gpu/Makefile
src/arch/opencl/Makefile
src/arch/mpi/Makefile
src/arch/mpi/nanox_compiler
src/utils/Makefile
scripts/offload_slave_launch.sh
tests/Makefile
nanox-config.h
])
AC_CONFIG_FILES([tests/gens/api-generator], [chmod +x tests/gens/api-generator])
AC_CONFIG_FILES([tests/gens/api-omp-generator], [chmod +x tests/gens/api-omp-generator])
AC_CONFIG_FILES([tests/gens/core-generator], [chmod +x tests/gens/core-generator])
AC_CONFIG_FILES([tests/gens/mcc-openmp-generator], [chmod +x tests/gens/mcc-openmp-generator])
AC_CONFIG_FILES([tests/gens/mcc-ompss-generator], [chmod +x tests/gens/mcc-ompss-generator])
AC_CONFIG_FILES([tests/gens/opencl-generator], [chmod +x tests/gens/opencl-generator])
AC_CONFIG_FILES([tests/gens/resiliency-generator], [chmod +x tests/gens/resiliency-generator])
AC_OUTPUT
gcc_builtins_used="unknown"
AS_IF([test "$new_gcc_builtins" = yes],[
gcc_builtins_used="new gcc __atomic builtins"
],[
gcc_builtins_used="legacy gcc __sync builtins"
])
AC_DEFUN([ax_check_enabled],[
AS_IF([test x$1 == xyes],[
echo -n "enabled"
],[
echo -n "disabled"
])
])
AS_ECHO(["
Configuration summary of Nanos++
================================
Host arch: $SMP_ARCH
User level threading: $ult_support
Configured architectures: $ARCHITECTURES
Configured versions: $VERSIONS
Extra options: $OPTIONS
GCC atomics: $gcc_builtins_used
Memory tracker: $(ax_check_enabled([$enable_memtracker]))
Memory allocator: $(ax_check_enabled([$enable_allocator]))
Task resiliency: $(ax_check_enabled([$enable_resiliency]))"])
AS_IF([test "$gasnet_available_conduits" != ""],[
AS_ECHO(["\
Cluster/GASNet conduits: $gasnet_available_conduits"])
])