diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-01-28 08:20:24 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-01-28 08:54:53 +0100 |
commit | efe65e2255f19dbb077c8176cea2b8f99957f661 (patch) | |
tree | d8ffe817cf49135dbc88d7c2226f1b7605d41f94 /compiler | |
parent | 03a1c3b077f9f35d1b07b0f5990dececb35f52a2 (diff) | |
download | Nim-efe65e2255f19dbb077c8176cea2b8f99957f661.tar.gz |
make tests green again
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 36097a172..fd223388e 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -782,7 +782,7 @@ proc callCCompiler*(projectfile: string) = it = PStrEntry(it.next) for x in toCompile: add(objfiles, ' ') - add(objfiles, x.obj) + add(objfiles, quoteShell(x.obj)) linkCmd = getLinkCmd(projectfile, objfiles) if optCompileOnly notin gGlobalOptions: |