Let's say I am compiling my code with nim c -d:release myprog.nim
. How can I see what flags are being passed to gcc
, and how to specify additional flags? For example I want to use -ffast-math
.
I tried to trace the logic in /etc/nim.cfg
, but I'd rather be able to see directly what nim c
is emitting.