IC progress (#25283)

bugfix: produce the required nimcache subdir
This commit is contained in:
Andreas Rumpf
2025-11-25 12:49:23 +01:00
committed by GitHub
parent 6543040d40
commit 0486a2df51
16 changed files with 360 additions and 170 deletions

View File

@@ -117,3 +117,5 @@ proc addInt*(result: var string; x: int64) {.enforceNoRaises.} =
proc addInt*(result: var string; x: int) {.inline, enforceNoRaises.} =
addInt(result, int64(x))
{.pop.}