I've just setup Nim v1.17.2 on Win10 x64, using the MinGW-w64 package
downloaded from Nim download page. I've tested compiling various Nim examples,
and the Nim compiler works fine so far. (before I had Nim v1.16.0, which came
with an installer, so I've just uninstalled it and setup v1.17.2 manually, so
chances are that I might have got something wrong).
I've also added `%USERPROFILE%\.nimble\bin\` to my User Path — but I think this
might not be required on Windows, since I've tried using Nimble without that on
the PATH and it seemed to work just fine. Is it necessary on Windows?
When I try `nimble test` I get this error:
C:\Nim>nimble test
Executing task test in C:\Nim\compiler.nimble
Verifying dependencies for [email protected]
Compiling C:\Nim\tests\benchmark.nim (from package compiler) using c
backend
Hint: used config file 'C:\Nim\config\nim.cfg' [Conf]
Hint: system [Processing]
system\alloc.nim(4, 1) Error: undeclared identifier: 'assert'
Error: Execution failed with exit code 1
Is the above Error something I should worry about? does it mean my setup is not
good?
But Nimble seems to be able to carry out all other operations fine, I've even
downloaded some packages without problems.
Also, from the [Nimble
documentation](https://github.com/nim-lang/nimble#configuration) it seems that
I should find Nimble configuration file here:
C:\Users\<YourUser>\AppData\Roaming\nimble\nimble.ini
... but there is no `nimble` folder inside `\AppData\Roaming` .