amun-code/build/make.default

58 lines
1.7 KiB
Plaintext
Raw Normal View History

#-------------------------------------------------------------------------------
#
# compilation, debugging and profiling flags:
#
# COMPILER - compiler brand; it is passed to the host file
# DEBUG - enable or disable debugging
# STATIC - enable or disable static linking
# SIGNALS - support for signals for proper shutdown with restart file
#
COMPILER = GNU
DEBUG = N
STATIC = N
SIGNALS = N
# parallelization flags:
#
# MPI - enable or disable MPI parallelization
# OPENMP - enable or disable OpenMP parallelization
#
MPI = N
OPENMP = N
# output data format:
#
# OUTPUT - the format of the alternative data output;
# default format XML+binary does not require setting this flag;
# alternative supported formats: HDF5
#
OUTPUT =
# data hashing and compression support for XML+binary format:
#
# XXHASH - use external libxxhash for calculating data digests;
# if XXHASH = N, the internal implementation is used;
# ZSTD - enable support for Zstandard compression;
# LZ4 - enable support for LZ4 compression;
# LZMA - enable support for LZMA compression;
#
XXHASH = N
ZSTD = N
LZ4 = N
LZMA = N
#-------------------------------------------------------------------------------
#
# geometry:
#
# NDIMS - number of dimensions, currently 2 or 3 are supported
#
NDIMS = 2
#
#-------------------------------------------------------------------------------
#
# path for temporary files during compilation (uncomment if you wish to use it)
#
#OBJSDIR := /tmp/${USER}/amun-code/objects