I want to experiment with the efficiency of various algorithms and compiler optimization is an obstacle. Can I disable compiler optimizations in QB64?
Asked
Active
Viewed 152 times
5
-
3You'd need to have a look at the `
/internal/c/makeline_ – Nov 25 '18 at 19:52.txt` file and remove the `-O ` switch, but there's currently no way to disable or otherwise alter the optimization level through the IDE or command-line options. -
1@ChronoKitsune No that's perfect, thanks! That does exactly what I wanted, if you post it as an answer I will gladly accept. – Alex V Nov 26 '18 at 15:34