source: CPL/oasis3/trunk/util/compile/frames/include_curie/Compile_mode_oasis3_curie.h @ 1677

Last change on this file since 1677 was 1677, checked in by aclsce, 12 years ago

Imported oasis3 (tag ipslcm5a) from cvs server to svn server (igcmg project).

File size: 781 bytes
RevLine 
[1677]1# Compile modes (specified by user) : oasis3 on titane
2
3  if [ $compile_mode = default ];   then
4    optc=" " 
5    optf="-convert big_endian -xHost"
6    optf77="-convert big_endian -xHost"
7    optl="-xHost"
8  elif [ $compile_mode = debug ];   then
9    optc=" "
10    optf="-xHost"
11    optf77="-xHost"
12    optl="-xHost"
13  elif [ $compile_mode = profile ]; then
14    optc=" "
15    optf="-xHost"
16    optf77="-xHost"
17    optl="-xHost"
18  elif [ $compile_mode = opt ];     then
19    optc=""
20    optf="-xHost"
21    optf77="-xHost"
22    optl="-xHost"
23  elif [ $compile_mode = ad_hoc ];  then
24    echo "with this option the options are set through GUI input"
25    exit 1
26  else
27    echo "Invalid compile mode"
28    exit 1
29  fi
30
31# Other compile options
32
33  optdbl="-i4 -r8"
34  optnh=""
35  lstflags=""
36
Note: See TracBrowser for help on using the repository browser.