mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-21 16:31:39 +00:00
workaround against silly Windows command line length limitations for the upcoming megatest.nim
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user