forked from SPECFEM/specfem3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
534 lines (435 loc) · 13.7 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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
dnl -*- Autoconf -*-
dnl
dnl Process this file with autoconf to produce the 'configure' script:
dnl
dnl autoreconf -i
dnl
dnl You must have recent versions of Autoconf and Automake installed.
############################################################
AC_PREREQ(2.61)
AC_INIT([Specfem3D], [3.0.0], [see the wiki], [Specfem3D])
AC_CONFIG_SRCDIR([src/specfem3D/specfem3D.F90])
AC_CONFIG_HEADER([setup/config.h])
AC_CONFIG_MACRO_DIR([m4])
m4_include(m4/cit_backports.m4)
############################################################
AS_BOX([setting up compilation flags])
AC_CANONICAL_HOST
# 'configure' options
###
### precision
###
AC_ARG_ENABLE([double-precision],
[AS_HELP_STRING([--enable-double-precision],
[solver in double precision @<:@default=no@:>@])],
[want_double_precision="$enableval"],
[want_double_precision=no])
if test x"$want_double_precision" = xno; then
CUSTOM_REAL=SIZE_REAL
CUSTOM_MPI_TYPE=MPI_REAL
else
CUSTOM_REAL=SIZE_DOUBLE
CUSTOM_MPI_TYPE=MPI_DOUBLE_PRECISION
fi
AC_SUBST([CUSTOM_REAL])
AC_SUBST([CUSTOM_MPI_TYPE])
###
### debugging
###
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug],
[build with debugging options enabled @<:@default=no@:>@])],
[want_debug="$enableval"],
[want_debug=no])
AM_CONDITIONAL([COND_DEBUG], [test x"$want_debug" != xno])
export COND_DEBUG_FALSE
export COND_DEBUG_TRUE
###
### MPI
###
AC_ARG_WITH([mpi],
[AS_HELP_STRING([--with-mpi],
[build parallel version @<:@default=yes@:>@])],
[want_mpi="$withval"],
[want_mpi=yes])
AM_CONDITIONAL([COND_MPI], [test x"$want_mpi" = xyes])
###
### FORCE_VECTORIZATION
###
## note: vectorization support has been removed by DK due to problems with Intel compilers (2016).
## enabling will have no effect.
AC_ARG_ENABLE([vectorization],
[AS_HELP_STRING([--enable-vectorization],
[build FORCE_VECTORIZATION enabled version @<:@default=auto@:>@])],
[want_vec="$enableval"],
[want_vec=no])
if test x"$want_vec" == xauto; then
if test x"$want_debug" != xno; then
want_vec=no
else
want_vec=yes
fi
else
if test x"$want_vec" != xno && test x"$want_debug" != xno; then
AC_MSG_ERROR([--enable-debug and --enable-vectorization cannot be specified simultaneously.])
fi
fi
AM_CONDITIONAL([COND_VECTORIZATION], [test x"$want_vec" != xno])
###
### CUDA
###
AC_ARG_WITH([cuda],
[AS_HELP_STRING([--with-cuda],
[build CUDA GPU enabled version @<:@default=no@:>@])],
[want_cuda="$withval"],
[want_cuda=no])
AM_CONDITIONAL([COND_CUDA], [test x"$want_cuda" != xno])
AM_CONDITIONAL([COND_CUDA5], [test x"$want_cuda" = xcuda5])
AM_CONDITIONAL([COND_CUDA6], [test x"$want_cuda" = xcuda6])
AM_CONDITIONAL([COND_CUDA7], [test x"$want_cuda" = xcuda7])
AM_CONDITIONAL([COND_CUDA8], [test x"$want_cuda" = xcuda8])
AM_CONDITIONAL([COND_CUDA9], [test x"$want_cuda" = xcuda9])
# cuda linking for cuda 5x and 6x and 7x and 8x and ..
AM_CONDITIONAL([COND_CUDA_PLUS],
[test "$want_cuda" = cuda5 \
-o "$want_cuda" = cuda6 \
-o "$want_cuda" = cuda7 \
-o "$want_cuda" = cuda8 \
-o "$want_cuda" = cuda9 \]
)
###
### OPENMP
###
AC_ARG_ENABLE([openmp],
[AS_HELP_STRING([--enable-openmp],
[build OpenMP enabled version @<:@default=no@:>@])],
[want_omp="$enableval"],
[want_omp=no])
AM_CONDITIONAL([COND_OMP], [test x"$want_omp" != xno])
###
### VTK
###
AC_ARG_ENABLE([vtk],
[AS_HELP_STRING([--enable-vtk],
[build VTK enabled version @<:@default=no@:>@])],
[want_vtk="$enableval"],
[want_vtk=no])
AM_CONDITIONAL([COND_VTK], [test x"$want_vtk" != xno])
###
### ADIOS
###
AC_ARG_WITH([adios],
[AS_HELP_STRING([--with-adios],
[build ADIOS enabled version @<:@default=no@:>@])],
[want_adios="$withval"],
[want_adios=no])
AM_CONDITIONAL([COND_ADIOS], [test x"$want_adios" != xno])
###
### ASDF
###
AC_ARG_WITH([asdf],
[AC_HELP_STRING([--with-asdf],
[build ASDF enabled version @<:@default=no@:>@])],
[want_asdf="$withval"],
[want_asdf=no])
AM_CONDITIONAL([COND_ASDF], [test x$"$want_asdf" != xno])
############################################################
# Checks for programs.
# a courtesy to the installed base of users
if test x"$FC" = x && test x"$F90" != x; then
FC="$F90"
fi
if test x"$MPIFC" = x && test x"$MPIF90" != x; then
MPIFC="$MPIF90"
fi
# note: if not set, default FCFLAGS (and CFLAGS) will be set by autoconf/configure script (mostly -g -O2)
if test x"$FCFLAGS" = x && test x"$FLAGS_CHECK" != x ; then
FCFLAGS=""
fi
AC_PROG_FC
export FC
export MPIFC
F77="$FC"
FFLAGS="$FCFLAGS"
AC_PROVIDE([AC_PROG_F77])
AC_SUBST([FCENV])
AC_SUBST(srcdir)
flags_guess="$SHELL $srcdir/flags.guess"
AC_MSG_NOTICE([running $flags_guess])
flags=`$flags_guess` ||
AC_MSG_ERROR([$flags_guess failed])
eval $flags
AC_FC_WRAPPERS
AC_LANG(Fortran)
AC_FC_SRCEXT(f90)
AC_FC_FREEFORM()
AC_FC_PP_DEFINE()
AC_SUBST([FC_DEFINE])
AC_FC_PP_SRCEXT(F90) dnl Because AC_FC_PP_DEFINE messes with things.
AC_PROG_CC
############################################################
#checks for Scotch
AS_BOX([SCOTCH])
export SCOTCH_DIR
export SCOTCH_LIBDIR
export SCOTCH_INCLUDEDIR
export USE_BUNDLED_SCOTCH
AC_ARG_WITH([scotch-dir],
AS_HELP_STRING([--with-scotch-dir=DIR],[define the root path to Scotch (e.g. /opt/scotch/)]),
[
ac_scotch_dir="$withval";
])
AC_ARG_WITH([scotch-includedir],
AS_HELP_STRING([--with-scotch-includedir=DIR],[define the path to the Scotch headers (e.g. /opt/scotch/include)]),
[
ac_scotch_include_dir="$withval";
])
AC_ARG_WITH([scotch-libdir],
AS_HELP_STRING([--with-scotch-libdir=DIR],[define the path to the Scotch libraries (e.g. /opt/scotch/lib)]),
[
ac_scotch_lib_dir="$withval";
])
if test "${USE_BUNDLED_SCOTCH}" != "1"; then
if test -z "${ac_scotch_lib_dir}"; then
if test -n "${ac_scotch_dir}"; then
ac_scotch_lib_dir="${ac_scotch_dir}/lib";
else
ac_scotch_lib_dir="/usr/lib";
fi
fi
if test -z "${ac_scotch_include_dir}"; then
if test -n "${ac_scotch_dir}"; then
ac_scotch_include_dir="${ac_scotch_dir}/include";
else
ac_scotch_include_dir="/usr/include/scotch";
fi
fi
scotch_lib=""
ac_save_ldflags=${LDFLAGS}
if test -n "${ac_scotch_lib_dir}"; then
LDFLAGS="${LDFLAGS} -L${ac_scotch_lib_dir}";
fi
AC_CHECK_LIB(scotch,scotchfarchinit ,[scotch_lib="yes";],[scotch_lib="no";LDFLAGS=${ac_save_ldflags}], -lscotcherr)
scotch_include=""
ac_save_cppflags=${CPPFLAGS}
# scotch only needed for fortran code
#if test -n "${ac_scotch_include_dir}"; then
# CPPFLAGS="${CPPFLAGS} -I${ac_scotch_include_dir}";
#fi
dnl This does not work because we are in Fortran mode, which does not
dnl handle headers.
dnl
dnl AC_CHECK_HEADER(scotchf.h,[scotch_include="yes";],[scotch_include="no";CPPFLAGS=${ac_save_cppflags}])
scotch_usable="${scotch_lib}"
fi
AC_MSG_CHECKING([whether Scotch is usable])
if test "x${scotch_usable}" = "xyes"; then
AC_DEFINE([HAVE_SCOTCH],[1],[defined if Scotch is installed])
want_scotch=yes
USE_BUNDLED_SCOTCH=0
SCOTCH_DIR="${ac_scotch_dir}"
SCOTCH_LIBDIR="${ac_scotch_lib_dir}"
SCOTCH_INCLUDEDIR="${ac_scotch_include_dir}"
AC_MSG_RESULT([yes])
else
AC_DEFINE([HAVE_SCOTCH],[1],[defined if Scotch is installed])
AC_MSG_RESULT([no, using bundled scotch instead])
AC_PROG_LEX
if test -z "$LEX" || test "X$LEX" = "Xno"; then
AC_MSG_ERROR([No suitable lex found])
fi
AC_PROG_YACC
if test -z "$YACC" || test "X$YACC" = "Xno"; then
AC_MSG_ERROR([No suitable yacc or bison found])
fi
ACX_PTHREAD(AC_MSG_RESULT([pthread found]), AC_MSG_ERROR([pthread not found]))
# scotch only needed with mpi support
if test "$want_mpi" = yes; then
want_scotch=yes
#daniel: scotch bundle
# uses bundled scotch: current version pointed to by symbolic link scotch/
USE_BUNDLED_SCOTCH=1
SCOTCH_DIR="$srcdir/external_libs/scotch"
SCOTCH_LIBDIR="${SCOTCH_DIR}/lib"
SCOTCH_INCLUDEDIR="${SCOTCH_DIR}/include"
else
# no mpi support, scotch not needed
want_scotch=no
USE_BUNDLED_SCOTCH=0
fi # want_mpi
fi
LDFLAGS=${ac_save_ldflags}
AM_CONDITIONAL([COND_SCOTCH], [test "$want_scotch" = yes])
AS_IF([test "$want_scotch" = yes],[
AC_MSG_RESULT([SCOTCH is enabled])
],[
AC_MSG_RESULT([SCOTCH is not enabled])
])
############################################################
# influential environment variables
AC_ARG_VAR(USE_BUNDLED_SCOTCH, [Set to 1 to always use the bundled Scotch library])
AC_ARG_VAR(SCOTCH_DIR, [Directory where Scotch is installed])
AC_ARG_VAR(SCOTCH_INCLUDEDIR, [Directory where Scotch headers are installed])
AC_ARG_VAR(SCOTCH_LIBDIR, [Directory where Scotch libraries are installed])
AC_ARG_VAR(MPIFC, [MPI Fortran compiler command])
AC_ARG_VAR(MPILIBS, [extra libraries for linking MPI programs])
AC_ARG_VAR(MPICC, [MPI C compiler command])
AC_ARG_VAR(FLAGS_CHECK, [Fortran compiler flags])
# scratch disks
AC_ARG_VAR(LOCAL_PATH_IS_ALSO_GLOBAL, [files on a local path on each node are also seen as global with same path @<:@default=true@:>@])
############################################################
# tests
AS_IF([test x"$MPIFC" = x],[
MPIFC=mpif90
])
AS_IF([test x"$MPICC" = x],[
MPICC=mpicc
])
AS_IF([test x"$LOCAL_PATH_IS_ALSO_GLOBAL" = x],[
LOCAL_PATH_IS_ALSO_GLOBAL=true
])
# Checks for typedefs, structures, and compiler characteristics.
# check fortran modules flag
AS_BOX([module extensions])
AC_FC_MODULE_EXTENSION
AC_SUBST([FC_MODEXT])
AC_FC_MODULE_FLAG([], [])
AC_FC_MODULE_OUTPUT_FLAG([
FCFLAGS_f90="$FC_MODOUT./obj $FC_MODINC./obj $FC_MODINC. $FCFLAGS_f90"
FC_MODDIR=./obj
], [
FC_MODDIR=.
])
AC_SUBST([FC_MODDIR])
# Checks for header files.
AC_LANG_PUSH(C)
AC_CHECK_HEADER(emmintrin.h,AC_DEFINE([HAVE_EMMINTRIN],[1],[Define if emmintrin.h]))
AC_CHECK_HEADER(xmmintrin.h,AC_DEFINE([HAVE_XMMINTRIN],[1],[Define if xmmintrin.h]))
# AIX doesn't have err.h so we need to check
AC_CHECK_HEADER(err.h, AC_DEFINE([HAVE_ERR], [1],[Define if err.h]))
AC_LANG_POP(C)
# Checks for libraries.
###
### MPI
###
AS_IF([test "$want_mpi" = yes], [
AS_BOX([MPI])
# checks MPI include directory
CIT_MPI_INCDIR([$MPIFC])
])
###
### ADIOS
###
AS_IF([test x"$want_adios" != xno], [
AS_BOX([ADIOS])
if test "$want_mpi" != yes; then
AC_MSG_ERROR([Cannot compile with ADIOS without MPI.])
fi
CIT_ADIOS_CONFIG
])
###
### ASDF
###
AS_IF([test x"$want_asdf" != xno], [
AS_BOX([ASDF])
AC_ARG_VAR(ASDF_LIBS, [ASDF libraries for linking programs])
])
#mpbl: adding flags to config.h.in through autoheader in order to save them into the adios file.
#configure_flags_str="FC=$FC FCFLAGS=$FCFLAGS $FLAGS_CHECK"
#AC_DEFINE_UNQUOTED([CONFIGURE_FLAGS],["${configure_flags_str}"],
# [configuration flags to be saved in the adios output file.])
CONFIGURE_FLAGS="FC=$FC FCFLAGS=$FCFLAGS"
AC_SUBST([CONFIGURE_FLAGS])
###
### CUDA
###
AS_IF([test x"$want_cuda" != xno], [
AS_BOX([CUDA])
CIT_CUDA_CONFIG
])
###
### OPENMP
###
AS_IF([test x"$want_omp" != xno], [
AS_BOX([OpenMP])
AC_MSG_NOTICE([OpenMP compilation is enabled])
AC_ARG_VAR(OMP_FCFLAGS, [OpenMP Fortran compiler flags])
AC_ARG_VAR(OMP_LIB, [Location of extra OpenMP libraries])
# openmp checking
AC_MSG_NOTICE([OpenMP flag $OMP_FCFLAGS])
CIT_FC_OPENMP_MODULE([$FC], [$OMP_FCFLAGS])
])
###
### FORCE_VECTORIZATION
###
AS_IF([test x"$want_vec" != xno],[
AS_BOX([FORCE VECTORIZATION])
AC_MSG_NOTICE([FORCE_VECTORIZATION is enabled])
FLAGS_CHECK="${FLAGS_CHECK} ${FC_DEFINE}FORCE_VECTORIZATION"
CPPFLAGS="${CPPFLAGS} -DFORCE_VECTORIZATION"
])
###
### VTK
###
AS_IF([test x"$want_vtk" != xno], [
AS_BOX([VTK])
CIT_OPTIONS_VTK
CIT_PATH_VTK
])
############################################################
AS_BOX([setting up default simulation setup])
# Output results.
AC_CONFIG_FILES([
Makefile
setup/constants.h
setup/constants_tomography.h
setup/precision.h
setup/config.fh
])
AS_IF([test -d $srcdir/.git], [
GIT_VERSION_DEPS="$srcdir/.git/logs/HEAD"
AC_MSG_NOTICE([building from git repository])
AC_SUBST(GIT_VERSION_DEPS)
], [
dnl Only substitute if not in a git repository.
AC_MSG_NOTICE([not a git repository])
AC_CONFIG_FILES([setup/version.fh])
])
if test "$USE_BUNDLED_SCOTCH" = 1; then
AC_CONFIG_FILES([
${SCOTCH_DIR}/src/Makefile.inc
])
fi
AC_CONFIG_FILES([
DATA/Par_file:DATA/Par_file
DATA/CMTSOLUTION:DATA/CMTSOLUTION
DATA/STATIONS:DATA/STATIONS
])
AC_CONFIG_COMMANDS([bin], [AS_MKDIR_P(bin)])
AC_CONFIG_COMMANDS([obj], [AS_MKDIR_P(obj)])
AC_CONFIG_COMMANDS([DATA], [AS_MKDIR_P(DATA)])
AC_CONFIG_COMMANDS([OUTPUT_FILES], [AS_MKDIR_P(OUTPUT_FILES)])
AC_CONFIG_COMMANDS([DATABASES_MPI], [AS_MKDIR_P(OUTPUT_FILES/DATABASES_MPI)])
AC_OUTPUT
#daniel: adding custom lines to config.h.in through autoheader
AH_BOTTOM([
/* Define to select optimized file i/o for regional simulations */
/* map fails when output files are > 4GB, which is often the case for GPU simulations */
#undef USE_MAP_FUNCTION
])
dnl FYI, this is not a "result", but AS_ECHO is not available in 2.61, and it
dnl basically works like a portable echo.
AC_MSG_RESULT([])
AS_BOX([$PACKAGE_NAME $PACKAGE_VERSION])
AC_MSG_RESULT([])
AC_MSG_RESULT([$0 has completed and set up a default configuration to build.])
AC_MSG_RESULT([])
AC_MSG_RESULT([You may wish to modify the following files before running a simulation:])
AC_MSG_RESULT([AS_HELP_STRING([DATA/Par_file],
[Set parameters affecting the simulation.])])
AC_MSG_RESULT([AS_HELP_STRING([DATA/CMTSOLUTION],
[Set the source parameters before running the solver.])])
AC_MSG_RESULT([AS_HELP_STRING([DATA/STATIONS],
[Set the receiver stations before running the solver.])])
AC_MSG_RESULT([])
dnl end of configure.ac