Fix vcc linker option name (#12422)

This commit is contained in:
Tomohiro
2019-10-18 23:20:18 +09:00
committed by Andreas Rumpf
parent 889b745b2b
commit 6b157e5f73

View File

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