I have a problem I have absolutely no clue why this happens: [https://github.com/nim-lang/Nim/pull/5664](https://github.com/nim-lang/Nim/pull/5664)
In order to find out why this happens I would like to debug the compiler. Since I think that the problem is somewhere in the generated C code I would like to debug the generated C code. This means I would like to compile the nim files in release mode (no source map), but then when I compile the c files, I would like to compile them with debug information, so that I can see where in the C code I am. So how can I do this?
