You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The reason will be displayed to describe this comment to others. Learn more.
So, now this fails for me on Linux:
touch j.nim
nim c -c -d=nimBetterRun j
with:
Hint: used config file '/usr/lib/nim/config/nim.cfg' [Conf]
.....................................................................oserrors.nim(92) raiseOSError
Error: unhandled exception: No such file or directory
Additional info: /tmp/j [OSError]
a5f46a7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, now this fails for me on Linux:
with:
strace
shows the failure at:newfstatat(AT_FDCWD, "/tmp/j", 0x7ffca46896f0, 0) = -1 ENOENT
I have not tried to bisect/whatever, but it worked for me on devel about 24 hours ago and the most suspicious commit is:
4974baf
Just a guess, but probably in
nimBetterRun
-mode the check has to look in the cache directory?a5f46a7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad. #24211