diff options
author | jofret | 2010-01-26 07:09:29 +0000 |
---|---|---|
committer | jofret | 2010-01-26 07:09:29 +0000 |
commit | 7cae86726ca3192172d442e2f45cedfa843afd14 (patch) | |
tree | c7106918acdb49b1509a2745ae56f762bf40c315 | |
parent | 3b414a173d28047a74f3dca880b91cf35d37fc17 (diff) | |
download | scilab2c-7cae86726ca3192172d442e2f45cedfa843afd14.tar.gz scilab2c-7cae86726ca3192172d442e2f45cedfa843afd14.tar.bz2 scilab2c-7cae86726ca3192172d442e2f45cedfa843afd14.zip |
Remove -O3 option causes troubble on some compiler
-rw-r--r-- | scilab2c/macros/CCodeGeneration/C_GenerateMakefile.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab2c/macros/CCodeGeneration/C_GenerateMakefile.sci b/scilab2c/macros/CCodeGeneration/C_GenerateMakefile.sci index 424ccb81..0a0747b8 100644 --- a/scilab2c/macros/CCodeGeneration/C_GenerateMakefile.sci +++ b/scilab2c/macros/CCodeGeneration/C_GenerateMakefile.sci @@ -56,7 +56,7 @@ PrintStringInfo('SCI2CDIR = .',FileInfo.MakefileFilename,'file','y','y'); // Compiler definition PrintStringInfo('CC = gcc',FileInfo.MakefileFilename,'file','y','y'); -PrintStringInfo('CFLAGS = -Wall -pedantic -O3 -I $(HSRCDIR) -I $(ISRCDIR) -lm',FileInfo.MakefileFilename,'file','y','y'); +PrintStringInfo('CFLAGS = -Wall -pedantic -I $(HSRCDIR) -I $(ISRCDIR) -lm',FileInfo.MakefileFilename,'file','y','y'); // Binary definition PrintStringInfo('EXEFILENAME = mytest.exe',FileInfo.MakefileFilename,'file','y','y'); |