summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorcooldome <cdome@bk.ru>2020-05-04 18:42:29 +0100
committerGitHub <noreply@github.com>2020-05-04 19:42:29 +0200
commite86a6d24d5ffe43e9dc7f230b80c274167376225 (patch)
treebc4e885ed6e8c153de7f716f7d998c541ef74488 /compiler
parentc817e85f4cddeddf534ea2890f7f741388ed1ff8 (diff)
downloadNim-e86a6d24d5ffe43e9dc7f230b80c274167376225.tar.gz
vcc fix (#14222)
Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'compiler')
-rw-r--r--compiler/extccomp.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim
index 37b33bf64..0faf3230b 100644
--- a/compiler/extccomp.nim
+++ b/compiler/extccomp.nim
@@ -162,7 +162,7 @@ compiler vcc:
     buildDll: " /LD",
     buildLib: "lib /OUT:$libfile $objfiles",
     linkerExe: "cl",
-    linkTmpl: "$builddll$vccplatform /Fe$exefile $objfiles $buildgui /link /nologo $options",
+    linkTmpl: "$builddll$vccplatform /Fe$exefile $objfiles $buildgui /nologo $options",
     includeCmd: " /I",
     linkDirCmd: " /LIBPATH:",
     linkLibCmd: " $1.lib",