summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-01-28 08:20:24 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-01-28 08:54:53 +0100
commitefe65e2255f19dbb077c8176cea2b8f99957f661 (patch)
treed8ffe817cf49135dbc88d7c2226f1b7605d41f94 /compiler
parent03a1c3b077f9f35d1b07b0f5990dececb35f52a2 (diff)
downloadNim-efe65e2255f19dbb077c8176cea2b8f99957f661.tar.gz
make tests green again
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 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: