-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9572d32
commit 4cad834
Showing
8 changed files
with
419 additions
and
31 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Compilation | ||
$FCOMPILER = gfortran | ||
$BASE_FFLAGS = -c -fPIC -ffree-line-length-none -fopenmp -fconvert=swap -fallow-argument-mismatch | ||
$PROD_FFLAGS = -O2 | ||
$DEV_FFLAGS = -O1 | ||
$DEBUG_FFLAGS = -O0 -g -fbounds-check -finit-real=snan -ffpe-trap=invalid,zero,overflow | ||
$CCOMPILER = gcc | ||
$BASE_CFLAGS = -c -fPIC -fopenmp | ||
$PROD_CFLAGS = -O2 | ||
$DEV_CFLAGS = -O1 | ||
$DEBUG_CFLAGS = -fbounds-check | ||
$OMP_FFLAGS = | ||
|
||
# Preprocessor | ||
$FPP_FLAGS = LINUX LITTLE_ENDIAN LITTLE REPRO48 PARKIND1_SINGLE | ||
$CPP_FLAGS = LINUX LITTLE_ENDIAN LITTLE PARKIND1_SINGLE | ||
$FPP_FLAGS_TESTPROGS = WITHOUT_CXXDEMANGLE USE_OPENMP | ||
|
||
# Linker | ||
$LINK = gfortran | ||
$BASE_LD = -fPIC -fdefault-real-8 -fdefault-double-8 -fopenmp | ||
$OMP_LD = | ||
$LD_EXE_TO_SHARED = -shared | ||
|
||
# Other | ||
$AR = ar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.