diff options
author | Varriount <clay.sweetser@gmail.com> | 2015-01-16 21:28:36 -0500 |
---|---|---|
committer | Varriount <clay.sweetser@gmail.com> | 2015-01-16 21:28:36 -0500 |
commit | 78b5779d93948d0438c171f7e464bf79a878f819 (patch) | |
tree | fddbcd3990229d3d28fc4faf65f2957da5bf2a0e | |
parent | 623429888ba7fd8d9fe2e0d1eebd29bc15f91ec0 (diff) | |
parent | b1351d23f52759fc67deb29625aa673fb6c5e2ef (diff) | |
download | Nim-78b5779d93948d0438c171f7e464bf79a878f819.tar.gz |
Merge branch 'devel' of git://github.com/zielmicha/Nimrod into zielmicha-devel
-rw-r--r-- | compiler/extccomp.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index ad9c38904..d61594cba 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -548,7 +548,7 @@ proc getCompileCFileCmd*(cfilename: string, isExternal = false): string = completeCFilePath(toObjFile(cfile)) objfile = quoteShell(objfile) result = quoteShell(compilePattern % [ - "file", cfile, "objfile", objfile, "options", options, + "file", quoteShell(cfile), "objfile", quoteShell(objfile), "options", options, "include", includeCmd, "nimrod", getPrefixDir(), "nim", getPrefixDir(), "lib", libpath]) add(result, ' ') @@ -717,4 +717,3 @@ proc writeMapping*(gSymbolMapping: PRope) = appf(code, "\n[Symbols]$n$1", [gSymbolMapping]) writeRope(code, joinPath(gProjectPath, "mapping.txt")) - |