mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* fix #12293 findNimStdLibCompileTime should not break with nimble install compiler * address comment to unblock PR
This commit is contained in:
@@ -81,6 +81,9 @@ proc findNimStdLib*(): string =
|
||||
## Returns "" on failure.
|
||||
try:
|
||||
let nimexe = os.findExe("nim")
|
||||
# this can't work with choosenim shims, refs https://github.com/dom96/choosenim/issues/189
|
||||
# it'd need `nim dump --dump.format:json . | jq -r .libpath`
|
||||
# which we should simplify as `nim dump --key:libpath`
|
||||
if nimexe.len == 0: return ""
|
||||
result = nimexe.splitPath()[0] /../ "lib"
|
||||
if not fileExists(result / "system.nim"):
|
||||
@@ -93,8 +96,8 @@ proc findNimStdLib*(): string =
|
||||
proc findNimStdLibCompileTime*(): string =
|
||||
## Same as ``findNimStdLib`` but uses source files used at compile time,
|
||||
## and asserts on error.
|
||||
const sourcePath = currentSourcePath()
|
||||
result = sourcePath.parentDir.parentDir / "lib"
|
||||
const exe = getCurrentCompilerExe()
|
||||
result = exe.splitFile.dir.parentDir / "lib"
|
||||
doAssert fileExists(result / "system.nim"), "result:" & result
|
||||
|
||||
proc createInterpreter*(scriptName: string;
|
||||
|
||||
Reference in New Issue
Block a user