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

Last change on this file since 1991 was 1991, checked in by aclsce, 11 years ago

Added ada compilation options for Oasis3.
Added -xHost on Curie (without that crashes...I have to investigate)

File size: 727 bytes
Line 
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=""
11    optf77=""
12    optl=""
13  elif [ $compile_mode = profile ]; then
14    optc=" "
15    optf=""
16    optf77=""
17    optl=""
18  elif [ $compile_mode = opt ];     then
19    optc=""
20    optf=""
21    optf77=""
22    optl=""
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.