diff options
author | cooldome <cdome@bk.ru> | 2020-05-04 18:42:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 19:42:29 +0200 |
commit | e86a6d24d5ffe43e9dc7f230b80c274167376225 (patch) | |
tree | bc4e885ed6e8c153de7f716f7d998c541ef74488 /compiler | |
parent | c817e85f4cddeddf534ea2890f7f741388ed1ff8 (diff) | |
download | Nim-e86a6d24d5ffe43e9dc7f230b80c274167376225.tar.gz |
vcc fix (#14222)
Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/extccomp.nim | 2 |
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", |