workaround against silly Windows command line length limitations for the upcoming megatest.nim

This commit is contained in:
Araq
2018-12-06 15:24:46 +01:00
parent a5ecbf823f
commit 8896770f8f
2 changed files with 28 additions and 16 deletions

View File

@@ -763,6 +763,13 @@ proc execCmdsInParallel(conf: ConfigRef; cmds: seq[string]; prettyCb: proc (idx:
rawMessage(conf, errGenerated, "execution of an external program failed: '$1'" %
cmds.join())
proc minimizeObjfileNameLen(fullObjName: AbsoluteFile, conf: ConfigRef): string =
# For OSes with command line length limitations we try to use relative
# paths over absolute ones:
result = relativeTo(fullObjName, getNimcacheDir(conf)).string
if result.len >= fullObjName.string.len:
result = fullObjName.string
proc callCCompiler*(conf: ConfigRef; projectfile: AbsoluteFile) =
var
linkCmd: string
@@ -783,19 +790,24 @@ proc callCCompiler*(conf: ConfigRef; projectfile: AbsoluteFile) =
if optNoLinking notin conf.globalOptions:
# call the linker:
var objfiles = ""
for it in conf.externalToLink:
let objFile = if noAbsolutePaths(conf): it.extractFilename else: it
add(objfiles, ' ')
add(objfiles, quoteShell(
addFileExt(objFile, CC[conf.cCompiler].objExt)))
for x in conf.toCompile:
let objFile = if noAbsolutePaths(conf): x.obj.extractFilename else: x.obj.string
add(objfiles, ' ')
add(objfiles, quoteShell(objFile))
let oldCwd = getCurrentDir()
try:
setCurrentDir(getNimcacheDir(conf).string)
for it in conf.externalToLink:
let objFile = if noAbsolutePaths(conf): it.extractFilename else: it
add(objfiles, ' ')
let fullObjName = AbsoluteFile addFileExt(objFile, CC[conf.cCompiler].objExt)
add(objfiles, quoteShell(minimizeObjfileNameLen(fullObjName, conf)))
for x in conf.toCompile:
let objFile = if noAbsolutePaths(conf): x.obj.extractFilename.AbsoluteFile else: x.obj
add(objfiles, ' ')
add(objfiles, quoteShell(minimizeObjfileNameLen(objFile, conf)))
linkCmd = getLinkCmd(conf, projectfile, objfiles)
if optCompileOnly notin conf.globalOptions:
execLinkCmd(conf, linkCmd)
linkCmd = getLinkCmd(conf, projectfile, objfiles)
if optCompileOnly notin conf.globalOptions:
execLinkCmd(conf, linkCmd)
finally:
setCurrentDir(oldCwd)
else:
linkCmd = ""
if optGenScript in conf.globalOptions:

View File

@@ -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,