diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-23 04:31:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 13:31:53 +0100 |
commit | 5d95137ce040edd181e56bc132ce319e59bd1ee4 (patch) | |
tree | b17fa6e6298cbc4d5d24fef398b754c88b783681 /compiler | |
parent | b1a3651ae4e2db9ea46ab5c6c82f554d963d8506 (diff) | |
download | Nim-5d95137ce040edd181e56bc132ce319e59bd1ee4.tar.gz |
remove tests/deps/ (#17132)
* remove tests/deps/ * fix tests * fix tests/manyloc/keineschweine/lib/zlib_helpers.nim * fixup
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/condsyms.nim | 3 | ||||
-rw-r--r-- | compiler/nimpaths.nim | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/compiler/condsyms.nim b/compiler/condsyms.nim index 336bfe11c..dd6de38b2 100644 --- a/compiler/condsyms.nim +++ b/compiler/condsyms.nim @@ -47,7 +47,8 @@ proc initDefines*(symbols: StringTableRef) = defineSymbol("nimparsebiggestfloatmagic") # deadcode defineSymbol("nimalias") # deadcode defineSymbol("nimlocks") # deadcode - defineSymbol("nimnode") # deadcode pending tests/deps/opengl-1.1.0/opengl.nim + defineSymbol("nimnode") # deadcode pending `nimnode` reference in opengl package + # refs https://github.com/nim-lang/opengl/pull/79 defineSymbol("nimvarargstyped") # deadcode defineSymbol("nimtypedescfixed") # deadcode defineSymbol("nimKnowsNimvm") # deadcode diff --git a/compiler/nimpaths.nim b/compiler/nimpaths.nim index 7b2216080..71bb9a7d7 100644 --- a/compiler/nimpaths.nim +++ b/compiler/nimpaths.nim @@ -3,7 +3,8 @@ Represents absolute paths, but using a symbolic variables (eg $nimr) which can b resolved at runtime; this avoids hardcoding at compile time absolute paths so that the project root can be relocated. -xxx consider some refactoring with $nim/testament/lib/stdtest/specialpaths.nim; +xxx factor pending https://github.com/timotheecour/Nim/issues/616, see also +$nim/testament/lib/stdtest/specialpaths.nim specialpaths is simpler because it doesn't need variables to be relocatable at runtime (eg for use in testament) |