123456789101112131415161718192021222324 |
- ################################################################################
- ################### Projet XIOS ###################
- ################################################################################
- %CCOMPILER mpicc
- %FCOMPILER mpif90
- %LINKER mpif90 -nofor-main
- %BASE_CFLAGS -ansi -w
- %PROD_CFLAGS -O3 -march=core-avx2 -DBOOST_DISABLE_ASSERTS
- %DEV_CFLAGS -g -O1 -fp-model precise -march=core-avx2
- %DEBUG_CFLAGS -g
- %BASE_FFLAGS -D__NONE__
- %PROD_FFLAGS -r8 -O3 -march=core-avx2
- %DEV_FFLAGS -g -r8 -O3 -march=core-avx2 -ip -fp-model precise -extend-source 132
- %DEBUG_FFLAGS -g
- %BASE_INC -D__NONE__
- %BASE_LD -lstdc++
- %CPP mpicc -EP
- %FPP fpp
- %MAKE make
|