Selaa lähdekoodia

Add -O3 in Linux make

Arthur Yefimov 3 vuotta sitten
vanhempi
commit
6b2356c0b7
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/make.sh

+ 1 - 1
src/make.sh

@@ -9,7 +9,7 @@ export OBERON=.:$OFRDIR/Lib/Sym
 OFR="ofront+ -s -88"
 CC="gcc"
 AR="ar"
-CCFULL="$CC -g3 -O0 -fno-exceptions -I $OFRDIR/../../Mod/Lib -I $OFRDIR/Lib/Obj"
+CCFULL="$CC -O3 -fno-exceptions -I $OFRDIR/../../Mod/Lib -I $OFRDIR/Lib/Obj"
 
 
 $OFR -Cw Config_linux.Mod &&