-
Notifications
You must be signed in to change notification settings - Fork 50
/
buildcmake
executable file
·704 lines (634 loc) · 16.4 KB
/
buildcmake
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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
#!/bin/bash
# Thin wrapper around CMake to start a build with a similar command line as ./buildold
set -o errexit
# bash < 4.4 erroneously considers empty arrays to be unset
[[ ${BASH_VERSINFO[0]} -gt 4 ]] || [[ ${BASH_VERSINFO[0]} -eq 4 && ${BASH_VERSINFO[1]} -ge 4 ]] && set -o nounset
# Determine the location of this script
my_srcdir="$(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
full_args=("$@")
# Check that CMake is available and that the version is sufficiently new
command -v cmake >/dev/null 2>&1 && rc=$? || rc=$?
if [[ $rc -ne 0 ]]; then
echo "Warning: CMake unavailable, running ./buildold instead."
sleep 2
"$my_srcdir/buildold" "$@"
exit $?
fi
if [[ $(uname) == "MSYS"* || $(uname) == "MINGW"* ]]; then
echo "Warning: CMake build is not supported under MSYS, running ./buildold instead."
sleep 2
"$my_srcdir/buildold" "$@"
exit $?
fi
cmake_version_major=$(cmake --version | head -1 | cut -f 3 -d' ' | cut -f 1 -d'.')
cmake_version_minor=$(cmake --version | head -1 | cut -f 3 -d' ' | cut -f 2 -d'.')
cmake_version_full=$(cmake --version | head -1 | cut -f 3 -d' ')
if [[ $cmake_version_major -lt 3 || ($cmake_version_major -eq 3 && $cmake_version_minor -lt 4) ]]; then
echo "Warning: The CMake version on your system is too old (needed: 3.4.0 or later; available: $cmake_version_full), running ./buildold instead."
sleep 2
"$my_srcdir/buildold" "$@"
exit $?
fi
usage()
{
echo "Usage: $0 <target> <triplet> [other options]"
echo " See the Charm++ manual at"
echo " https://charm.rtfd.io/en/latest/charm++/manual.html#installing-charm"
echo " for full instructions, or run './build --help'"
}
help()
{
"$my_srcdir/buildold" --help
exit 0
}
############ Begin option parsing
if [[ $# -eq 1 && "$1" == "--help" ]]; then
help
fi
if [[ $# -lt 2 ]]; then
usage
exit 1
fi
# Build options
target="$1"
full_triplet="$2"
shift
shift
function parse_triplet() {
# Extract extra options from the full_triplet, e.g.,
# full_triplet='netlrts-darwin-x86_64-smp-omp'
# becomes actual_triplet='netlrts-darwin-x86_64' and extra_triplet_opts='smp omp'
all_triplets=$(cd "$my_srcdir/src/arch" && find . -maxdepth 1 -name '*-*' -type d | sed 's,./,,')
extra_triplet_opts="$full_triplet"
for t in $all_triplets; do
extra_triplet_opts=${extra_triplet_opts#"$t"}
[[ $full_triplet == $t* ]] && actual_triplet=$t
done
if [[ -z ${actual_triplet:-} ]]; then
echo "Error: triplet '$full_triplet' is not supported."
echo "Supported triplets are: ${all_triplets//$'\n'/ }"
exit 2
fi
return 0
}
parse_triplet
extra_triplet_opts=${extra_triplet_opts//-/ }
opt_build_ofi=0
opt_cxi=0
opt_ampi_error_checking=0
opt_ampi_mpich_tests=0
opt_ampi_only=0
opt_arch=$(echo "$actual_triplet" | cut -f 3 -d -) # opt_arch might be empty for e.g. 'gni-crayxc'.
opt_build_shared=0
opt_ccs=0
opt_charmdebug=0
opt_controlpoint=0
opt_cuda=0
opt_destination=""
opt_disabletls=0
opt_install_prefix=""
opt_drone_mode=0
opt_enable_fortran=1
opt_error_checking= #undef
opt_extra_opts=()
opt_incdir=()
opt_lbtime_type="double"
opt_lbuserdata=0
opt_libdir=()
opt_lockless_queue=0
opt_lrts_pmi=""
opt_mempool_cutoff=26
opt_network=0
opt_numa=0
opt_omp=0
opt_ooc=0
opt_parallel=-j1
opt_persistent=0
opt_prio_type="bitvec"
opt_production=0
opt_pthreads=0
opt_pxshm=0
opt_shmem=0
opt_xpmem=0
opt_qlogic=0
opt_randomized_msgq=0
opt_refnum_type="unsigned short"
opt_replay=0
opt_shrinkexpand=0
opt_smp=0
opt_stats=0
opt_suffix=""
opt_syncft=0
opt_task_queue=0
opt_tcp=0
opt_tracing= #undef
opt_tracing_commthread=0
opt_zlib=1
# default to building ROMIO on AMPI where supported
case "$actual_triplet" in
*-win-*)
opt_romio=0
;;
*)
opt_romio=1
;;
esac
# Compiler selection. By default, use whatever is specified in the environment.
opt_CC=${CC:-}
opt_CXX=${CXX:-}
opt_FC=${FC:-}
opt_compiler=()
# Misc options
VERBOSE=0
ONLY_CONFIGURE=0
FORCE=0
function parse_platform_compilers() {
handled=1
case "$1" in
# Platform specific options
syncft)
opt_syncft=1
;;
cuda)
opt_cuda=1
;;
cxi)
opt_cxi=1
;;
smp)
opt_smp=1
;;
omp)
opt_omp=1
;;
ooc)
opt_ooc=1
;;
tcp)
opt_tcp=1
;;
pthreads)
opt_pthreads=1
;;
pxshm)
opt_pxshm=1
;;
simplepmi|slurmpmi|slurmpmi2|ompipmix|openpmix|slurmpmi2cray)
opt_lrts_pmi="$arg"
;;
persistent)
opt_persistent=1
;;
# Compilers
gcc)
opt_CC=gcc
opt_CXX=g++
opt_compiler+=("$arg")
;;
gcc-*)
opt_CC="$arg"
opt_CXX=${arg/cc/++}
opt_compiler+=("$arg")
;;
gfortran|gfortran-*)
opt_FC="$arg"
opt_compiler+=("$arg")
;;
clang)
opt_CC=clang
opt_CXX=clang++
opt_compiler+=("$arg")
;;
clang-*)
opt_CC="$arg"
opt_CXX=${arg/clang/clang++}
opt_compiler+=("$arg")
;;
flang)
opt_FC=flang
opt_compiler+=("$arg")
;;
icx)
opt_CC=icx
opt_CXX=icpx
opt_compiler+=("$arg")
;;
icc|iccstatic)
opt_CC=icc
opt_CXX=icpc
opt_compiler+=("$arg")
;;
ifort)
opt_FC=ifort
opt_compiler+=("$arg")
;;
ifx)
opt_FC=ifx
opt_compiler+=("$arg")
;;
xlc|xlc64)
opt_CC=xlc_r
opt_CXX=xlC_r
opt_FC=xlf90_r
opt_compiler+=("$arg")
;;
pgcc)
opt_CC=pgcc
command -v pgc++ >/dev/null 2>&1 && opt_CXX=pgc++ || opt_CXX=pgCC
opt_FC=pgf90
opt_compiler+=("$arg")
;;
pgf90)
opt_FC=pgf90
opt_compiler+=("$arg")
;;
msvc)
opt_CC=msvc # fake, will be replaced below
opt_compiler+=("$arg")
;;
mpicxx)
opt_CC=mpicc
opt_CXX=mpicxx
opt_FC=mpif90
opt_compiler+=("$arg")
;;
nvc|nvhpc)
opt_CC=nvc
opt_CXX=nvc++
opt_FC=nvfortran
opt_compiler+=("$arg")
;;
nvfortran)
opt_FC=nvfortran
opt_compiler+=("$arg")
;;
*)
handled=0
;;
esac
}
function processArgs() {
while [[ $# -gt 0 ]]; do
arg="$1"
shift
# Platform/compiler options are handled here:
parse_platform_compilers "$arg"
[[ $handled -eq 1 ]] && continue
# Other options are handled below:
case "$arg" in
# Charm++ dynamic libraries
--no-build-shared)
opt_build_shared=0
;;
--build-shared)
opt_build_shared=1
;;
# Enable/disable features
--enable-error-checking)
opt_error_checking=1
;;
--enable-shmem)
opt_shmem=1
;;
--enable-xpmem)
opt_xpmem=1 # XPMEM implies SHMEM
opt_shmem=1
;;
--enable-ampi-error-checking)
opt_ampi_error_checking=1
;;
--enable-stats)
opt_stats=1
;;
--enable-tracing)
opt_tracing=1
;;
--enable-tracing-commthread)
opt_tracing_commthread=1
;;
--enable-task-queue)
opt_task_queue=1
;;
--enable-drone-mode)
opt_drone_mode=1
;;
--enable-charmdebug)
opt_charmdebug=1
;;
--enable-replay)
opt_replay=1
;;
--enable-ccs)
opt_ccs=1
;;
--enable-controlpoint)
opt_controlpoint=1
;;
--enable-lbuserdata)
opt_lbuserdata=1
;;
--enable-lockless-queue)
opt_lockless_queue=1
;;
--enable-shrinkexpand)
opt_shrinkexpand=1
;;
--with-numa)
opt_numa=1
;;
--with-lbtime-type=*)
opt_lbtime_type=${arg#*=}
;;
--with-qlogic)
opt_qlogic=1
;;
--with-refnum-type=*)
opt_refnum_type=${arg#*=}
;;
--with-prio-type=*)
opt_prio_type=${arg#*=}
;;
--enable-randomized-msgq)
opt_randomized_msgq=1
;;
--with-mempool-cutoff=*)
opt_mempool_cutoff=${arg#*=}
;;
--enable-ampi-mpich-tests)
opt_ampi_mpich_tests=1
;;
--enable-zlib)
opt_zlib=1
;;
--with-production)
opt_production=1
;;
--ampi-only)
opt_ampi_only=1
;;
--with-romio)
opt_romio=1
;;
--without-romio)
opt_romio=0
;;
# Miscellaneous options
-k)
# -k is an option for make, not for the compiler.
echo "*** Note: Ignoring '-k' option."
;;
--help)
help
;;
-j[0-9]*)
opt_parallel=$arg
;;
-v)
echo "Enabling verbose mode."
VERBOSE=1 # Run 'make' verbosely
;;
-vv)
echo "Enabling extra verbose mode."
VERBOSE=1 # Run 'make' verbosely
opt_extra_opts+=(-verbose -save) # Run 'charmc' verbosely
;;
--only-configure)
# Run only cmake, not make
ONLY_CONFIGURE=1
;;
--force)
# Overwrite existing build directory
FORCE=1
;;
-j)
opt_parallel="$arg"
if [[ $# -gt 0 && $1 == [0-9]* ]]; then
opt_parallel+="$1"
shift
fi
;;
--destination=*)
opt_destination=${arg#*=}
;;
--disable-tls)
opt_disabletls=1
;;
--disable-fortran)
opt_enable_fortran=0
;;
--install-prefix=*)
opt_install_prefix=${arg#*=}
;;
--suffix=*)
opt_suffix=-${arg#*=}
;;
--basedir=*)
opt_incdir+=("-I${arg#*=}/include")
opt_libdir+=("-L${arg#*=}/lib")
if [[ -d "${arg#*=}/lib64" ]]; then
opt_libdir+=("-L${arg#*=}/lib64")
fi
;;
--libdir=*)
opt_libdir+=("-L${arg#*=}")
;;
--incdir=*)
opt_incdir+=("-I${arg#*=}")
;;
*)
echo "*** Note: Adding unknown option '$arg' to compiler flags."
opt_extra_opts+=("$arg")
;;
esac
done
}
# Process original command-line arguments
processArgs "$@"
# Also parse extra options appended to the triplet
for arg in $extra_triplet_opts; do
parse_platform_compilers "$arg"
done
############ End option parsing
# Make adjustments to $target if necessary
if [[ "$target" = "${target%AMPI-only}AMPI-only" ]]; then
opt_ampi_only=1
# strip "-only" suffix from AMPI target
target="${target%AMPI-only}AMPI"
fi
# Determine the build directory name
# Append certain features and compilers to the end of $builddir
builddir_extra=""
for flag in opt_omp opt_smp opt_tcp opt_pthreads opt_pxshm opt_syncft opt_ooc opt_persistent opt_cuda opt_cxi; do
[[ $flag -eq 1 ]] && builddir_extra+="-${flag/opt_/}"
done
for c in "$opt_lrts_pmi" "${opt_compiler[@]}"; do
[[ -n "$c" ]] && builddir_extra+="-$c"
done
if [[ "$actual_triplet" = ofi* ]]; then
opt_build_ofi=1
fi
# Use slurmpmi2cray by default for ofi builds on Cray platforms (e.g. Cray
# Shasta/EX) to access cray extentions to PMI from cray-pmi
if [[ "$actual_triplet" = ofi-cray* && -z "$opt_lrts_pmi" ]]; then
opt_lrts_pmi="slurmpmi2cray"
fi
# Default to using simplepmi on non-Cray OFI platforms
is_ofi_ucx="^(ofi|ucx).*"
if [[ $actual_triplet =~ $is_ofi_ucx && $opt_lrts_pmi == "" ]]; then
opt_lrts_pmi="simplepmi"
fi
if [[ -n "$opt_destination" ]]; then
# Note that $builddir_extra is intentionally ignored here
builddir="$opt_destination$opt_suffix"
else
builddir="$actual_triplet$builddir_extra$opt_suffix"
fi
# Check whether configure step has already taken place
if [[ -f "$builddir/Makefile" ]]
then
echo "The configure step has already taken place for the specified build."
if [[ $FORCE -eq 0 ]]
then
echo "To attempt a partial rebuild, run 'make' in \"$builddir\"."
echo "To remove the existing data and reconfigure, run this script again with --force."
exit 1
else
echo "Removing existing data and starting over. (--force)"
fi
elif [[ -e "$builddir" && ! -e "$builddir/.spack" ]]
then
echo "\"$builddir\" already exists but is in an inconsistent state."
if [[ $FORCE -eq 0 ]]
then
echo "To remove the existing data and reconfigure, run this script again with --force."
exit 1
else
echo "Removing existing data and starting over. (--force)"
fi
fi
# Install directory set-up
if [[ -n "$opt_install_prefix" ]]
then
# Install directory provided by user - Update installdir to point to it instead.
installdir="$opt_install_prefix"
else
# Default Install directory
installdir="$my_srcdir/$builddir-install"
fi
# Build option setup
if [[ $opt_ampi_only -eq 1 ]]; then
# AMPI doesn't use Charm-MPI interop, msg priorities, non-FIFO queues, or CcdSCHEDLOOP.
# AMPI creates O(NumVirtualRanks) chare arrays by default (for MPI_COMM_SELF),
# so we bump up the number of bits reserved for the collection in the objid.
opt_prio_type="char"
opt_extra_opts=('-DCMK_NO_INTEROP=1' '-DCMK_NO_MSG_PRIOS=1' '-DCMK_FIFO_QUEUE_ONLY=1' '-DCSD_NO_SCHEDLOOP=1' '-DCMK_OBJID_COLLECTION_BITS=29' "${opt_extra_opts[@]}")
fi
# Special handling for gni-crayxc, gni-crayxe, mpi-crayxc, mpi-crayxe, mpi-crayshasta, ofi-crayshasta
if [[ $actual_triplet == gni-* || $actual_triplet == *-cray* ]]; then
opt_network=$actual_triplet
# Need to use Cray's compiler frontends on Cray systems
opt_CC=cc
opt_CXX=CC
opt_FC=ftn
else
opt_network=$(echo "$actual_triplet" | cut -d '-' -f1)
fi
my_os=$(echo "$actual_triplet" | cut -d '-' -f2)
if [[ $opt_network == "mpi" && $my_os == "win" ]]; then
echo "Warning: CMake build is not supported with MPI on Windows, running ./buildold instead."
sleep 2
"$my_srcdir/buildold" "${full_args[@]}"
exit $?
fi
# Special handling for Windows compiler
if [[ $my_os == "win" && ( -z $opt_CC || $opt_CC == "msvc" ) ]]; then
# Need to use unix2nt_cc on Windows/Cygwin
opt_CC="$(realpath "$my_srcdir")/src/arch/win/unix2nt_cc"
opt_CXX="$opt_CC"
opt_FC=
fi
[[ $opt_production -eq 0 ]] && opt_production='Debug' || opt_production='Release'
if [[ $VERBOSE -eq 1 ]]; then
echo "Build options for $actual_triplet:"
# Print selected options
for option in ${!opt*}; do
echo " $option = ${!option[*]:-}"
done
fi
# Create builddir and its contents
rm -rf "${builddir:?}"/*
mkdir -p "$builddir"
cd "$builddir"
ConvUsr='include/conv-mach-pre.sh'
if [[ ${#opt_libdir[@]} -ne 0 ]]; then
mkdir -p include
echo "USER_OPTS_LD='${opt_libdir[*]}'" >> "$ConvUsr"
fi
if [[ ${#opt_incdir[@]} -ne 0 ]]; then
mkdir -p include
echo "USER_OPTS_CC='${opt_incdir[*]}'" >> "$ConvUsr"
echo "USER_OPTS_CXX='${opt_incdir[*]}'" >> "$ConvUsr"
fi
# Run configure step
CC=$opt_CC CXX=$opt_CXX FC=$opt_FC cmake "$my_srcdir" \
-G "Unix Makefiles" \
-DARCH="$opt_arch" \
-DCMAKE_BUILD_TYPE="$opt_production" \
-DCMAKE_INSTALL_PREFIX="$installdir" \
-DCMK_AMPI_ONLY="$opt_ampi_only" \
-DCMK_AMPI_WITH_ROMIO="$opt_romio" \
-DAMPI_ERROR_CHECKING="$opt_ampi_error_checking" \
-DAMPI_MPICH_TESTS="$opt_ampi_mpich_tests" \
-DBUILD_SHARED="$opt_build_shared" \
-DCCS="$opt_ccs" \
-DCHARMDEBUG="$opt_charmdebug" \
-DCONTROLPOINT="$opt_controlpoint" \
-DBUILD_CUDA="$opt_cuda" \
-DDISABLE_TLS="$opt_disabletls" \
-DDRONE_MODE="$opt_drone_mode" \
-DENABLE_FORTRAN=$opt_enable_fortran \
-DERROR_CHECKING="$opt_error_checking" \
-DEXTRA_OPTS="${opt_extra_opts[*]}" \
-DLBTIME_TYPE="$opt_lbtime_type" \
-DLBUSERDATA="$opt_lbuserdata" \
-DLOCKLESS_QUEUE="$opt_lockless_queue" \
-DLRTS_PMI="$opt_lrts_pmi" \
-DCMK_MEMPOOL_CUTOFFNUM="$opt_mempool_cutoff" \
-DNETWORK="$opt_network" \
-DNUMA="$opt_numa" \
-DOMP="$opt_omp" \
-DOOC="$opt_ooc" \
-DPERSISTENT="$opt_persistent" \
-DPRIO_TYPE="$opt_prio_type" \
-DPTHREADS="$opt_pthreads" \
-DPXSHM="$opt_pxshm" \
-DCMK_HAS_XPMEM="$opt_xpmem" \
-DCMK_USE_SHMEM="$opt_shmem" \
-DQLOGIC="$opt_qlogic" \
-DRANDOMIZED_MSGQ="$opt_randomized_msgq" \
-DREFNUM_TYPE="$opt_refnum_type" \
-DREPLAY="$opt_replay" \
-DSHRINKEXPAND="$opt_shrinkexpand" \
-DSMP="$opt_smp" \
-DSTATS="$opt_stats" \
-DSYNCFT="$opt_syncft" \
-DTARGET="$target" \
-DTASK_QUEUE="$opt_task_queue" \
-DTCP="$opt_tcp" \
-DTRACING="$opt_tracing" \
-DTRACING_COMMTHREAD="$opt_tracing_commthread" \
-DCXI="$opt_cxi" \
-DCMK_BUILD_OFI="$opt_build_ofi" \
-DZLIB="$opt_zlib"
# Run build step
[[ $ONLY_CONFIGURE -eq 1 ]] && exit 0
[[ $VERBOSE -eq 1 ]] && export VERBOSE
make "$opt_parallel"
# Only Install if the user provides an install prefix with the
# `--install-prefix` option. Without this option, `make install` would be a
# no-op.
if [[ -n "$opt_install_prefix" ]]
then
make install
fi
echo 'Build successful.'