Huh, I just debugged a problem that showed up depending on the compilation flags I set. For debugging, I don't compile for speed, and I compile with gcc (mingw32) with no flags. For release, I set -O3 for increased performance.
It turns out the problem was due to failure to initialize variables; do compilation flags affect variable initialization? Or was this just random?
It turns out the problem was due to failure to initialize variables; do compilation flags affect variable initialization? Or was this just random?
Comment