diff options
author | cornet | 2010-04-01 09:36:17 +0000 |
---|---|---|
committer | cornet | 2010-04-01 09:36:17 +0000 |
commit | 4c8e570f745051833e0f704545bba385f20c0df5 (patch) | |
tree | c2a5e5bc6d5c16655d4c069701b9e57a022a5b62 /macros/CCodeGeneration | |
parent | a3b4b0e16e7952753110c81a95e46de4524b77e7 (diff) | |
download | scilab2c-4c8e570f745051833e0f704545bba385f20c0df5.tar.gz scilab2c-4c8e570f745051833e0f704545bba385f20c0df5.tar.bz2 scilab2c-4c8e570f745051833e0f704545bba385f20c0df5.zip |
increase compatibility with MKL
Diffstat (limited to 'macros/CCodeGeneration')
-rw-r--r-- | macros/CCodeGeneration/C_GenerateMakefile_msvc.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/CCodeGeneration/C_GenerateMakefile_msvc.sci b/macros/CCodeGeneration/C_GenerateMakefile_msvc.sci index 6890c140..b49a2c31 100644 --- a/macros/CCodeGeneration/C_GenerateMakefile_msvc.sci +++ b/macros/CCodeGeneration/C_GenerateMakefile_msvc.sci @@ -47,7 +47,7 @@ PrintStringInfo('BLAS_LIB = $(SCI2CDIR)/external-libs/blasplus.lib',MakefileFile PrintStringInfo('CC = cl',MakefileFilename,'file','y','y'); PrintStringInfo('LINKER = link',MakefileFilename,'file','y','y'); PrintStringInfo('LINKER_OPTIMISATION_MODE=/RELEASE ',MakefileFilename,'file','y','y'); -PrintStringInfo('CC__OPTIMISATION_MODE=-Z7 -O2 -MT',MakefileFilename,'file','y','y'); +PrintStringInfo('CC__OPTIMISATION_MODE=-Z7 -O2 -MD',MakefileFilename,'file','y','y'); PrintStringInfo('CC_OPTIONS = $(CC_COMMON) -W3 -Gd $(CC__OPTIMISATION_MODE) /Fo""$(DIR_OBJ)/"" /Fd""$(DIR_OBJ)/"" ',MakefileFilename,'file','y','y'); PrintStringInfo('CFLAGS = $(CC_OPTIONS) -I""$(HSRCDIR)"" -I""$(ISRCDIR)"" /EHsc /TP ',MakefileFilename,'file','y','y'); PrintStringInfo('EXEFILENAME = mytest',MakefileFilename,'file','y','y'); |