summary refs log tree commit diff stats
path: root/config
diff options
context:
space:
mode:
authorTomohiro <gpuppur@gmail.com>2019-10-27 19:36:38 +0900
committerAndreas Rumpf <rumpf_a@web.de>2019-10-27 11:36:38 +0100
commitf3b56e7ac064129e9c74db92faa80d1be6025709 (patch)
tree6beaffb40e2b9398d81d3db472c0c40aa65e9097 /config
parent3c567bcf20f06dd6e9be8fc0b09bffec3bfeb0a4 (diff)
downloadNim-f3b56e7ac064129e9c74db92faa80d1be6025709.tar.gz
Add /nologo option when nim call cl.exe (#12524)
Diffstat (limited to 'config')
-rw-r--r--config/nim.cfg5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/nim.cfg b/config/nim.cfg
index af8a97a19..78b565d52 100644
--- a/config/nim.cfg
+++ b/config/nim.cfg
@@ -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"