Add /nologo option when nim call cl.exe (#12524)

This commit is contained in:
Tomohiro
2019-10-27 19:36:38 +09:00
committed by Andreas Rumpf
parent 3c567bcf20
commit f3b56e7ac0

View File

@@ -256,9 +256,10 @@ vcc.cpp.exe = "vccexe.exe"
vcc.linkerexe = "vccexe.exe"
vcc.cpp.linkerexe = "vccexe.exe"
vcc.options.always = "/nologo"
vcc.cpp.options.always = "/EHsc"
vcc.options.linker = "/F33554432" # set the stack size to 32 MiB
vcc.cpp.options.linker = "/F33554432"
vcc.options.linker = "/nologo /F33554432" # set the stack size to 32 MiB
vcc.cpp.options.linker = "/nologo /F33554432"
vcc.options.debug = "/Zi /FS /Od"
vcc.cpp.options.debug = "/Zi /FS /Od"
vcc.options.speed = "/O2"