summaryrefslogtreecommitdiff
path: root/macros
diff options
context:
space:
mode:
authorjofret2010-01-26 07:09:29 +0000
committerjofret2010-01-26 07:09:29 +0000
commit45e43eeb6602280e7b46877dbb78158217a4d650 (patch)
tree84c2eb959662eb1726b7ffdae3592e564f73b0e2 /macros
parent80124f32cd00858642ca7c872fc88f61ab12e534 (diff)
downloadscilab2c-45e43eeb6602280e7b46877dbb78158217a4d650.tar.gz
scilab2c-45e43eeb6602280e7b46877dbb78158217a4d650.tar.bz2
scilab2c-45e43eeb6602280e7b46877dbb78158217a4d650.zip
Remove -O3 option causes troubble on some compiler
Diffstat (limited to 'macros')
-rw-r--r--macros/CCodeGeneration/C_GenerateMakefile.sci2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/CCodeGeneration/C_GenerateMakefile.sci b/macros/CCodeGeneration/C_GenerateMakefile.sci
index 424ccb81..0a0747b8 100644
--- a/macros/CCodeGeneration/C_GenerateMakefile.sci
+++ b/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');