blob: 15ccba5feafb45d379adb30c93ae49767815438b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-- File: CMPLRS.edl
-- Author: euclid
-- History: Fri Feb 20 16:16:22 MET 1998
@if ( %DebugMode == "False" ) then
@if ( %Station == "sun" ) then
@set %CMPLRS_CXX_ModeOpt = " -O3 -DNo_Exception ";
@endif;
@if ( %Station == "ao1" ) then
@string %CMPLRS_CXX_ModeOpt += " -O3 -DNo_Exception ";
@endif;
@if ( %Station == "sil" ) then
@set %CMPLRS_CXX_ModeOpt = " -O2 -DNo_Exception ";
@endif;
@if ( %Station == "hp" ) then
@set %CMPLRS_CXX_ModeOpt = " +O3 -DNo_Exception ";
@endif;
@endif;
|