-
Notifications
You must be signed in to change notification settings - Fork 67
/
optim.opts
44 lines (39 loc) · 1.46 KB
/
optim.opts
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
# This enables parallel builds using one build process for each core
# available on your computer. Note that this includes logical
# ("hyperthreaded") cores. BE CAREFUL: You need to have enough RAM for
# this, where "enough" currently means "about 2 Gb per logical core"!
#NUM_CORES="$(grep "processor" /proc/cpuinfo | wc -l)"
#export MAKE_FLAGS="-j$NUM_CORES"
# guess the location of the opm-dune-builld repository based on the
# location of the dunecontrol options file. you might want to change
# this if you have an uncommon build setup!
TMP="$(dirname $DUNE_OPTS_FILE)"
if test -x "$TMP/bin/cmake-wrapper.sh"; then
OPM_DUNE_CMAKE_DIR="$TMP"
CMAKE="$OPM_DUNE_CMAKE_DIR"/bin/cmake-wrapper.sh
elif test -x "$TMP/opm-dune-cmake/bin/cmake-wrapper.sh"; then
OPM_DUNE_CMAKE_DIR="$TMP/opm-dune-cmake"
CMAKE="$OPM_DUNE_CMAKE_DIR"/bin/cmake-wrapper.sh
elif test -x "$TMP/../opm-dune-cmake/bin/cmake-wrapper.sh"; then
OPM_DUNE_CMAKE_DIR="$TMP/../opm-dune-cmake"
CMAKE="$OPM_DUNE_CMAKE_DIR"/bin/cmake-wrapper.sh
fi
CXX_WARNING_OPTS=" \
-Wall \
-Wunused \
-Wmissing-include-dirs \
-Wcast-align"
CXX_OPTS=" \
-fstrict-overflow \
-ffast-math \
-fno-finite-math-only \
-O3 \
-march=native \
-DNDEBUG=1"
# arguments passed to the cmake command.
CMAKE_FLAGS=" \
-DBUILD_TESTING=OFF \
-DDUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS=ON \
-DCMAKE_C_FLAGS=\"$CXX_WARNING_OPTS $CXX_OPTS\" \
-DCMAKE_CXX_FLAGS=\"$CXX_WARNING_OPTS $CXX_OPTS\" \
"