-
Notifications
You must be signed in to change notification settings - Fork 13
/
configure.ac
427 lines (357 loc) · 11.1 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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# This file is part of Nanos6 and is licensed under the terms contained in the COPYING file.
#
# Copyright (C) 2015-2024 Barcelona Supercomputing Center (BSC)
# Nanos6 version and copyright
m4_define([nanos6_version], [4.2])
m4_define([nanos6_license], ["GPL3"])
m4_define([nanos6_copyright], ["2015-2023 Barcelona Supercomputing Center (BSC)"])
# Location of external dependencies that can be embedded
m4_define([hwloc_embedded_subdir], [deps/hwloc])
m4_define([jemalloc_embedded_subdir], [deps/jemalloc])
# Installation subdirs where to find embedded dependencies
m4_define([jemalloc_embedded_install_subdir], [deps/nanos6/jemalloc])
AC_PREREQ([2.69])
AC_INIT([nanos6], [nanos6_version], [pm-tools@bsc.es])
AC_CONFIG_SRCDIR([src/scheduling/Scheduler.hpp])
AC_CONFIG_AUX_DIR([config-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AC_CHECK_SPECIAL_HOST_ARCH
AC_USE_SYSTEM_EXTENSIONS
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip subdir-objects -Wall tar-pax -Wno-portability])
AM_SILENT_RULES([yes])
AC_CHECK_CACHE
AC_CONFIG_HEADERS([config.h])
AM_PROG_AR
LT_INIT([shared disable-static pic-only])
AC_SUBST([LIBTOOL_DEPS])
SSS_CHECK_SOURCE_VERSION
# Checks for programs
SSS_PREPARE_COMPILER_FLAGS
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_17([noext], [mandatory])
SSS_CHECK_CC_VERSION
SSS_CHECK_CXX_VERSION
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
CHECK_SANE_AWK
AC_PATH_PROG([PERL],[perl])
SSS_CHECK_NANOS6_MERCURIUM
SSS_PUSH_NANOS6_MERCURIUM
SSS_CHECK_MERCURIUM_ACCEPTS_EXTERNAL_INSTALLATION
SSS_POP_NANOS6_MERCURIUM
SSS_CHECK_NANOS6_CLANG
DX_DOT_FEATURE(ON)
DX_INIT_DOXYGEN([nanos6_rt], [docs/Doxyfile], [docs/doxygen])
full_top_srcdir=$(readlink -f ${srcdir})
AC_SUBST([full_top_srcdir])
# Checks for libraries.
AX_BOOST_BASE([1.59], [], [ AC_MSG_ERROR([Boost library not found])])
CHECK_PTHREAD
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
# AC_C_INLINE
AC_TYPE_SIZE_T
AC_LANG_PUSH(C++)
AC_C_RESTRICT
AC_LANG_POP(C++)
if test x"${ac_have_nanos6_mercurium}" = x"yes" ; then
NANOS6_MCXX="${NANOS6_MCXX} -std=c++03"
fi
# Checks for library functions.
AC_CHECK_DLOPEN
AC_CHECK_LIBNUMA
AC_CHECK_PAPI
AC_CHECK_PQOS
AC_CHECK_DLB
AC_CHECK_BABELTRACE2
AC_CHECK_OVNI
AC_CHECK_HWLOC
AC_CHECK_JEMALLOC
# Build ctf2prv fast converter if Babeltrace2 is available
AM_CONDITIONAL([BUILD_CTF2PRV_FAST], [test x"${ac_use_babeltrace2}" = x"yes"])
AC_CHECK_FUNCS([reallocarray aligned_alloc])
AC_CHECK_MADV_FREE
AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIBS="${CLOCK_LIBS} -lrt"])
AC_SUBST(CLOCK_LIBS)
AC_CHECK_LIB([log], [__android_log_print], [ANDROID_LOG_LIBS="${ANDROID_LOG_LIBS} -llog"])
AC_SUBST(ANDROID_LOG_LIBS)
CHECK_UNDEFINED_SYMBOL_VERIFICATION_FLAGS
CHECK_AS_NEEDED_FLAGS
ADD_AS_NEEDED_SUPPORT_TO_LIBTOOL
SSS_FIXUP_COMPILER_FLAGS
SELECT_INSTRUMENTATIONS
# Check for gethostid
AC_CHECK_FUNCS([gethostid])
AC_ARG_ENABLE(
[dependency-delayed-operations],
[AS_HELP_STRING([--disable-dependency-delayed-operations], [do not delay dependency update operations])],
[
case "${enableval}" in
yes)
ac_dep_delayed_ops=yes
;;
no)
ac_dep_delayed_ops=no
;;
*)
AC_MSG_ERROR([bad value ${enableval} for --disable-dependency-delayed-operations])
;;
esac
],
[ac_dep_delayed_ops=yes]
)
if test x"${ac_dep_delayed_ops}" = x"no" ; then
AC_DEFINE([NO_DEPENDENCY_DELAYED_OPERATIONS], 1, [do not delay dependency updates])
else
AC_DEFINE([NO_DEPENDENCY_DELAYED_OPERATIONS], 0, [do not delay dependency updates])
fi
AC_MSG_CHECKING([if the runtime must embed any code changes])
AC_ARG_ENABLE(
[embed-code-changes],
[AS_HELP_STRING([--enable-embed-code-changes], [embed into the runtime any code changes present in the source])],
[
case "${enableval}" in
yes)
ac_embed_code_changes=yes
;;
no)
ac_embed_code_changes=no
;;
*)
AC_MSG_ERROR([bad value ${enableval} for --enable-embed-code-changes])
;;
esac
],
[ac_embed_code_changes=no]
)
AC_MSG_RESULT([$ac_embed_code_changes])
if test x"${ac_embed_code_changes}" = x"yes"; then
if test x"${ac_source_in_git}" != x"true" ; then
AC_MSG_WARN([cannot embed code changes if source is not in a git repository])
ac_embed_code_changes=no
fi
fi
AM_CONDITIONAL([EMBED_CODE_CHANGES], [test x"${ac_embed_code_changes}" = x"yes"])
AC_ARG_ENABLE(
[less-test-threads],
[AS_HELP_STRING([--enable-less-test-threads], [reduce the size of tests that create additional threads])],
[
case "${enableval}" in
yes)
ac_less_test_threads=yes
;;
no)
ac_less_test_threads=no
;;
*)
AC_MSG_ERROR([bad value ${enableval} for --enable-less-test-threads])
;;
esac
],
[ac_less_test_threads=no]
)
AM_CONDITIONAL([LESS_TEST_THREADS], [test x"${ac_less_test_threads}" = x"yes"])
# Check support for CUDA
AC_CHECK_CUDA
# Check support for OpenACC
AC_ARG_ENABLE([openacc], [AS_HELP_STRING([--enable-openacc], [Enable OpenACC task support])])
if test x"${enable_openacc}" = x"yes" ; then
AC_CHECK_PGI
else
ac_use_openacc=no
fi
AM_CONDITIONAL([USE_OPENACC], [test x${ac_use_openacc} = x"yes"])
if test x"${ac_use_openacc}" = x"yes" ; then
AC_DEFINE([USE_OPENACC], [1], [Define if OpenACC is enabled.])
AC_DEFINE_UNQUOTED([NANOS6_OPENACC_PGI_HEADER], [${openacc_h_pgi}], [PGI OpenACC include header.])
fi
# Dependency engines to build
# Always include regions dependencies
ac_regions_deps=yes
AC_MSG_CHECKING([if regions dependencies should be included])
AC_MSG_RESULT([$ac_regions_deps])
AM_CONDITIONAL([REGIONS_DEPENDENCIES], [test x"${ac_regions_deps}" = x"yes"])
AM_CONDITIONAL([HAVE_LINEAR_REGION_SUPPORT], [test x"${ac_regions_deps}" = x"yes"])
AM_CONDITIONAL([HAVE_CONCURRENT_SUPPORT], [test x"${ac_regions_deps}" = x"yes"])
AM_CONDITIONAL([HAVE_REDUCTIONS_SUPPORT], [test x"${ac_regions_deps}" = x"yes"])
# Always include discrete dependencies
ac_discrete_deps=yes
AC_MSG_CHECKING([if discrete dependencies should be included])
AC_MSG_RESULT([$ac_discrete_deps])
AM_CONDITIONAL([DISCRETE_DEPENDENCIES], [test x"${ac_discrete_deps}" = x"yes"])
AC_ARG_ENABLE(
[extra-debug],
[AS_HELP_STRING([--enable-extra-debug], [enable extra assertions and checks in debug - may cause significant slowdown])],
[
case "${enableval}" in
yes)
ac_extra_debug=yes
;;
no)
ac_extra_debug=no
;;
*)
AC_MSG_ERROR([bad value ${enableval} for --enable-extra-debug])
;;
esac
],
[ac_extra_debug=no]
)
AM_CONDITIONAL([EXTRA_DEBUG_ENABLED], [test x"${ac_extra_debug}" = x"yes"])
if test x"${ac_extra_debug}" = x"yes" ; then
AC_DEFINE([EXTRA_DEBUG_ENABLED], [1], [Define if extra debug checks are enabled. Any checks with big performance impact should be conditional to this.])
fi
AC_CHECK_MAIN_WRAPPER_TYPE
AC_CHECK_SYMBOL_RESOLUTION_STRATEGY
AX_CHECK_EXTRAE
AC_SUBST([NANOS6_VERSION], [nanos6_version])
AC_SUBST([NANOS6_LICENSE], [nanos6_license])
AC_SUBST([NANOS6_COPYRIGHT], [nanos6_copyright])
AM_EXTRA_RECURSIVE_TARGETS([build-tests])
AC_CONFIG_FILES([
Makefile
docs/Doxyfile
commands/Makefile
tests/directive_based/mercurium/Makefile
tests/directive_based/clang/Makefile
])
AC_OUTPUT
if test x"${ac_have_nanos6_mercurium}" = x"no" ; then
AC_MSG_WARN([the directive based tests will not be checked since there is no Mercurium compiler available])
fi
if test x"${ac_have_nanos6_clang}" = x"no" ; then
AC_MSG_WARN([the directive based tests will not be checked since there is no Clang compiler available])
fi
_AS_ECHO([])
_AS_ECHO([])
_AS_ECHO([Configuration summary:])
_AS_ECHO([ Compiler version... ${CXX_VERSION}])
_AS_ECHO([ Compiler optimization flags... ${OPT_CXXFLAGS}])
_AS_ECHO([ Compiler debug flags... ${DBG_CXXFLAGS}])
_AS_ECHO([])
_AS_ECHO([ Include linear fragmented dependencies... ${ac_regions_deps}])
_AS_ECHO([ Include discrete dependencies... ${ac_discrete_deps}])
_AS_ECHO([ Symbol resolution method... ${ac_cv_use_symbol_resolution}])
_AS_ECHO([])
_AS_ECHO([ Mercurium prefix... ${NANOS6_MCC_PREFIX}])
_AS_ECHO([])
_AS_ECHO([ Clang prefix... ${NANOS6_CLANG_PREFIX}])
_AS_ECHO([])
_AS_ECHO([ Code model flags... ${MCMODEL_FLAGS}])
_AS_ECHO([])
_AS_ECHO([ Boost CPPFLAGS... ${BOOST_CPPFLAGS}])
_AS_ECHO([])
_AS_ECHO([ libnuma CPPFLAGS... ${libnuma_CPPFLAGS}])
_AS_ECHO([ libnuma LIBS... ${libnuma_LIBS}])
_AS_ECHO([])
if test x"${ac_use_embedded_hwloc}" = x"yes" ; then
_AS_ECHO([ hwloc is embedded... ${HWLOC_EMBEDDED_SUBDIR}])
else
_AS_ECHO([ hwloc CPPFLAGS... ${hwloc_CPPFLAGS} ${hwloc_CFLAGS}])
_AS_ECHO([ hwloc LIBS... ${hwloc_LIBS}])
_AS_ECHO([ hwloc LIBADD... ${hwloc_LIBADD}])
fi
_AS_ECHO([])
_AS_ECHO([ clock LIBS... ${CLOCK_LIBS}])
_AS_ECHO([])
_AS_ECHO_N([ Extrae is enabled... ])
if test x"${have_extrae}" = x"yes" ; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ Ovni is enabled... ])
if test x"${ac_use_ovni}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ Ovni CPPFLAGS... ${ovni_CPPFLAGS}])
_AS_ECHO([ Ovni LIBS... ${ovni_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ CUDA is enabled... ])
if test x"${ac_use_cuda}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ CUDA CFLAGS... ${CUDA_CFLAGS}])
_AS_ECHO([ CUDA LIBS... ${CUDA_LIBS}])
else
AC_MSG_RESULT([no])
fi
if test x"${ac_use_cuda_cl}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ CUDA OpenCL Support detected.])
fi
_AS_ECHO([])
_AS_ECHO_N([ OpenACC is enabled... ])
if test x"${ac_use_openacc}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ OpenACC/PGI LIBS... ${openacc_LIBS}])
_AS_ECHO([ OpenACC/PGI openacc.h... ${openacc_h_pgi}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ PAPI is enabled... ])
if test x"${ac_use_papi}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ PAPI CPPFLAGS... ${papi_CPPFLAGS}])
_AS_ECHO([ PAPI LIBS... ${papi_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ PQOS is enabled... ])
if test x"${ac_use_pqos}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ PQOS CPPFLAGS... ${pqos_CPPFLAGS}])
_AS_ECHO([ PQOS LIBS... ${pqos_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ DLB is enabled... ])
if test x"${ac_use_dlb}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ DLB CPPFLAGS... ${dlb_CPPFLAGS}])
_AS_ECHO([ DLB LIBS... ${dlb_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ jemalloc is enabled... ])
if test x"${ac_use_jemalloc}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ jemalloc CPPFLAGS... ${jemalloc_CPPFLAGS}])
_AS_ECHO([ jemalloc LIBS... ${jemalloc_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ Fast CTF trace converter is enabled... ])
if test x"${ac_use_babeltrace2}" = x"yes" ; then
AC_MSG_RESULT([yes])
_AS_ECHO([ babeltrace2 CPPFLAGS... ${babeltrace2_CPPFLAGS}])
_AS_ECHO([ babeltrace2 LIBS... ${babeltrace2_LIBS}])
else
AC_MSG_RESULT([no])
fi
_AS_ECHO([])
_AS_ECHO_N([ Extra debug checks are enabled... ])
if test x"${ac_extra_debug}" = x"yes" ; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi