-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMake.local.template
66 lines (48 loc) · 1.85 KB
/
Make.local.template
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
# === BUILD OPTIONS ===
# Commented out values are the defaults.
# Compile in debug mode.
# enable for code development as it enables more checks, such as array out of bounds
# DEBUG = FALSE
# Dimensionality (1, 2 or 3)
# DIM = 2
# Enable Embedded Boundary support
# USE_EB = TRUE
# Enable Tracer particles / Lagrangian states
# AMREX_PARTICLES = TRUE
# Enable the UQ GDTk gas models (see the advanced section for more config)
# EILMER_GAS = FALSE
# Set EILMER_INSTALL_LIB = TRUE if you want to build and install GDTk in the EILMER_HOME directory
# Otherwise, set EILMER_HOME to the location of the eilmer bin/, and lib/ folders
# EILMER_INSTALL_LIB = FALSE
# EILMER_HOME = $(TOP)/gdtkinst
# Set the location of the D-lang libraries
# DLANG_LIB = /usr/lib
# A simple timing table at the end of a simulation run
# TINY_PROFILE = FALSE
# Compilation verbosity (output make command for each file)
# VERBOSE = FALSE
# ccache will be used by default to speed up re-compilation if available.
# USE_CCACHE = TRUE
#=== ADVANCED OPTIONS ===
# Most users don't need to change these
# compiler package to use
# see the amrex/Tools/GNUMake/README.md
# COMP = GNU
# Use MPI for parallelism
# USE_MPI = TRUE
# Enable Python Debugging
# PYTHON_PLOT = FALSE
# If using PYTHON_PLOT, set PYTHON_INCLUDE to the location of python include directory
# and PYTHON_LIB to the location of your python lib directory
# PYTHON_INCLUDE = /usr/include/python3.8
# PYTHON_LIB = /usr/lib/python3.8/config-3.8-x86_64-linux-gnu
# Enable Amrex "Full" profiling
# See here: https://amrex-codes.github.io/amrex/docs_html/AMReX_Profiling_Tools_Chapter.html
# PROFILE = FALSE
# Use gperftools profiling
# PPROF = FALSE
# PPROF_INCLUDE = /usr/include/gperftools
# PPROF_LIB = /usr/lib/x86_64-linux-gnu
# GDTk source files directory and URL
# EILMER_SRC = $(TOP)/gdtk_git
# EILMER_URL = https://github.com/gdtk-uq/gdtk