-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added gcc/gfortran-13 compiler types
- Loading branch information
Nick Gould
committed
Nov 7, 2024
1 parent
18eb202
commit bcec6be
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
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,20 @@ | ||
# GNU gcc 13 compiler | ||
|
||
# | ||
# C compilation and loading | ||
# | ||
|
||
CC=gcc-13 | ||
CCBASIC='-c -std=gnu11 -fPIC' | ||
CCISO='-pedantic' # -pedantic-errors' | ||
CCDEBUG= #-g -DDEBUG_GALAHAD | ||
CCFFLAGS='-lgfortran -lm' | ||
|
||
CXX=g++-13 | ||
CXXBASIC='-c -std=gnu++11 -fPIC' | ||
CXXOPT=-O2 | ||
CXXNOOPT=-O0 | ||
CXXDEBUG='' | ||
CXXFFLAGS='' | ||
|
||
HWLOC='' |
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,60 @@ | ||
# GNU gfortran 13 compiler | ||
# | ||
# Fortran compilation and loading | ||
# | ||
|
||
FORTRAN='gfortran-13' | ||
BASIC='-c -fno-second-underscore -fPIC -cpp' | ||
MBASIC='-fno-second-underscore -fPIC -cpp' | ||
I8='-finteger-4-integer-8' | ||
LIBCMD='' | ||
MODCMD='-I$MOD' | ||
MODCMDB=$MODCMD | ||
MVMODS='$(MV) -f $(OBJ)/*.mod $(MOD)/ || true' | ||
OPTIMIZATION='-O' | ||
NOOPTIMIZATION='-O0' | ||
DEBUG= | ||
OPENMP='-fopenmp' | ||
SOMP='-fopenmp' | ||
F77='-ffixed-form' | ||
F90='' | ||
F95='' | ||
NOFMAIN='' | ||
CCONDEF= | ||
USUAL= | ||
SPECIAL= | ||
F77SUFFIX=f90 | ||
F95SUFFIX=f90 | ||
CUDA= | ||
CUDACOMP=$FORTRAN | ||
CUDAARCH= | ||
CUDACODE= | ||
CUDABASIC= | ||
CUDALIBS= | ||
CUDAOPENMP=$OPENMP | ||
MOMP='-lgomp' | ||
TIMER=GEN | ||
BLAS= | ||
LAPACK= | ||
OMP4=yes | ||
IEEECK= | ||
HSL= | ||
SPRAL='-lgalahad_spral' | ||
METIS4='-lgalahad_metis4' | ||
METIS5= | ||
PARMETIS= | ||
SCOTCH= | ||
PTSCOTCH= | ||
MPI='-lgalahad_mpi' | ||
PARDISO='-lgalahad_pardiso' | ||
MKL_PARDISO='-lgalahad_mkl_pardiso' | ||
WSMP='-lgalahad_wsmp' | ||
NOT95=IS95 | ||
NOT64=IS64 | ||
INTEGER=32bit | ||
QUADREAL=yes | ||
BINSHELL=sh | ||
SHARED='-shared' | ||
PASTIX='-lgalahad_pastix' | ||
MUMPS='-lgalahad_mumps' | ||
UMFPACK='-lgalahad_umfpack' |