From f3b56e7ac064129e9c74db92faa80d1be6025709 Mon Sep 17 00:00:00 2001 From: Tomohiro Date: Sun, 27 Oct 2019 19:36:38 +0900 Subject: [PATCH] Add /nologo option when nim call cl.exe (#12524) --- config/nim.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/nim.cfg b/config/nim.cfg index af8a97a199..78b565d52a 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"