Changeset 3964
- Timestamp:
- Nov 8, 2016, 4:27:42 PM (9 years ago)
- Location:
- dynamico_lmdz/aquaplanet/IOIPSL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/IOIPSL/arch/arch-X64_ADA.fcm
r3928 r3964 9 9 %PROD_FFLAGS -g -traceback -O3 -vec-report2 10 10 %DEV_FFLAGS -g -O1 -traceback 11 %DEBUG_FFLAGS -g - traceback -check bounds -fp-model strict11 %DEBUG_FFLAGS -g -check bounds -fp-model strict 12 12 %MPI_FFLAGS 13 13 %OMP_FFLAGS -openmp -openmp-threadprivate=compat 14 %BASE_LD -i4 -r8 -auto ${MKL_LIBS}14 %BASE_LD -i4 -r8 -auto 15 15 %MPI_LD 16 16 %OMP_LD -openmp -openmp-threadprivate=compat -
dynamico_lmdz/aquaplanet/IOIPSL/makeioipsl_fcm
r3907 r3964 10 10 arch_defined="FALSE" 11 11 arch_path="arch" 12 arch_default_path="arch" 12 13 arch_path_defined="FALSE" 13 14 CPP_KEY="CPP_NONE" … … 61 62 rm -f arch.fcm 62 63 rm -f arch.env 63 ln -s $arch_path/arch-${arch}.path ./arch.path 64 ln -s $arch_path/arch-${arch}.fcm ./arch.fcm 64 65 if test -f $arch_path/arch-${arch}.path 66 then 67 ln -s $arch_default_path/arch-${arch}.path arch.path 68 elif test -f $arch_default_path/arch-${arch}.path 69 then 70 ln -s $arch_default_path/arch-${arch}.path arch.path 71 fi 72 73 if test -f $arch_path/arch-${arch}.fcm 74 then 75 ln -s $arch_path/arch-${arch}.fcm arch.fcm 76 elif test -f $arch_default_path/arch-${arch}.fcm 77 then 78 ln -s $arch_default_path/arch-${arch}.fcm arch.fcm 79 fi 80 65 81 if test -f $arch_path/arch-${arch}.env 66 then 67 ln -s $arch_path/arch-${arch}.env arch.env 68 else 69 ln -s .void_file arch.env 70 fi 82 then 83 ln -s $arch_path/arch-${arch}.env arch.env 84 elif test -f $arch_default_path/arch-${arch}.env 85 then 86 ln -s $arch_default_path/arch-${arch}.env arch.env 87 else 88 ln -s .void_file arch.env 89 fi 71 90 source arch.env 72 91 source arch.path … … 75 94 exit 1 76 95 fi 77 78 96 LD_FLAGS="%BASE_LD" 79 97
Note: See TracChangeset
for help on using the changeset viewer.