-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.mk-example
102 lines (74 loc) · 2.42 KB
/
settings.mk-example
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
# USER_SETTINGS_FILE
# ##################
#
# This is an example settings file which can be used instead of modifying
# the src/Makefile directly
#
# Copy this file to settings.mk in the top level goma directory
#
# The values defined in this file (both commented and uncommented) will
# override the values in the src/Makefile
# _MACH is used if libraries were compiled with machine specific suffixes
# (libblas_linux)
# _MACH = linux
# Useful for standard goma libary install location
ARCH = rhel6_ompi
# Goma library path, by default we assume all major non-standard libraries are under
# the goma library path
GOMA_LIBS = /home/goma/production/$(ARCH)
# Compiler Settings
# =================
# MPI install location, used for include, lib, and bin directories
MPI_TOP = $(GOMA_LIBS)/openmpi-4.0.3
GOMA_MPI_LIB = -L$(MPI_TOP)/lib -lmpi -lmpi_mpifh
CC = $(MPI_TOP)/bin/mpicc
CXX = $(MPI_TOP)/bin/mpicxx
FC = $(MPI_TOP)/bin/mpif77
# GCC_TOP is the corresponding location of the gcc compilers and libs that are
# used by the MPI compilers
GCC_TOP = /usr
# DEBUG_FLAGS overrides CCFLAGS when building `debug` target
# DEBUG_FLAGS = -g -gdwarf-2
# All compiler options
# CCFLAGS = -O3
# C/C++ warning flags
# C_WARN_FLAGS = -Wall
# C++ standard flag (required for stratimikos support)
CXXSTD = -std=gnu++11
# Fortran warning flags
# F_WARN_FLAGS =
# Trilinos install directory (include, lib)
TRILINOS_TOP = $(GOMA_LIBS)/trilinos-13.0.0
# Install location
# will install files in $PREFIX/include/goma, $PREFIX/lib, $PREFIX/bin
PREFIX = /home/goma/build
# Below are the default defines, change defines as necessary
# DEFINES = -Dlinux \
# -DCOMPILER_64BIT \
# -DENABLE_AMESOS \
# -DTRILINOS \
# -DCHECK_FINITE\
# -DNO_CHEBYSHEV_PLEASE \
# -DMDE=27 \
# -DMAX_PROB_VAR=15 \
# -DMAX_EXTERNAL_FIELD=4 \
# -DMAX_CONC=4 \
# -DCOUPLED_FILL \
# -DPARALLEL \
# -DEIGEN_SERIAL
# If you want stratimikos support, use the above DEFINES and add the following
# -DHAVE_STRATIMIKOS
# Enable trapping on floating point exception (useful for debugging NaN's)
# -DFP_EXCEPT
# To enable .log files with some extra information
# -DENABLE_LOGGING
# TOOLING used for install, cleaning, and library creation
# install
# INSTALL = cp
# INSTFLAGS =
# clean
# RM = rm -f
# archiver
# AR = ar
# ARFLAGS = srv
# RANLIB = touch