Changeset 3964


Ignore:
Timestamp:
Nov 8, 2016, 4:27:42 PM (9 years ago)
Author:
ymipsl
Message:

Update ADA configuration for IOIPSL lib

YM

Location:
dynamico_lmdz/aquaplanet/IOIPSL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dynamico_lmdz/aquaplanet/IOIPSL/arch/arch-X64_ADA.fcm

    r3928 r3964  
    99%PROD_FFLAGS         -g -traceback -O3 -vec-report2
    1010%DEV_FFLAGS          -g -O1 -traceback
    11 %DEBUG_FFLAGS        -g -traceback -check bounds -fp-model strict
     11%DEBUG_FFLAGS        -g -check bounds -fp-model strict
    1212%MPI_FFLAGS
    1313%OMP_FFLAGS          -openmp -openmp-threadprivate=compat
    14 %BASE_LD             -i4 -r8 -auto ${MKL_LIBS}
     14%BASE_LD             -i4 -r8 -auto
    1515%MPI_LD
    1616%OMP_LD              -openmp -openmp-threadprivate=compat
  • dynamico_lmdz/aquaplanet/IOIPSL/makeioipsl_fcm

    r3907 r3964  
    1010arch_defined="FALSE"
    1111arch_path="arch"
     12arch_default_path="arch"
    1213arch_path_defined="FALSE"
    1314CPP_KEY="CPP_NONE"
     
    6162  rm -f arch.fcm
    6263  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
    6581  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
    7190  source arch.env
    7291  source arch.path
     
    7594  exit 1
    7695fi
    77 
    7896LD_FLAGS="%BASE_LD"
    7997
Note: See TracChangeset for help on using the changeset viewer.