diff options
author | Araq <rumpf_a@web.de> | 2018-12-06 15:24:46 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:23 +0100 |
commit | 8896770f8f9fa7057a11598b64160e7bce6a4266 (patch) | |
tree | e097a9fb23750c46fb8ee3cc0751f387f8dd547d /compiler/nim.nim | |
parent | a5ecbf823f178c2800d40bcff562bc4eca0f2030 (diff) | |
download | Nim-8896770f8f9fa7057a11598b64160e7bce6a4266.tar.gz |
workaround against silly Windows command line length limitations for the upcoming megatest.nim
Diffstat (limited to 'compiler/nim.nim')
-rw-r--r-- | compiler/nim.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/nim.nim b/compiler/nim.nim index 1c4dbd3be..cbd9d6f39 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -9,14 +9,14 @@ when defined(gcc) and defined(windows): when defined(x86): - {.link: "icons/nim.res".} + {.link: "../icons/nim.res".} else: - {.link: "icons/nim_icon.o".} + {.link: "../icons/nim_icon.o".} when defined(amd64) and defined(windows) and defined(vcc): - {.link: "icons/nim-amd64-windows-vcc.res".} + {.link: "../icons/nim-amd64-windows-vcc.res".} when defined(i386) and defined(windows) and defined(vcc): - {.link: "icons/nim-i386-windows-vcc.res".} + {.link: "../icons/nim-i386-windows-vcc.res".} import commands, lexer, condsyms, options, msgs, nversion, nimconf, ropes, |