When I use the Gmake option, I can see the actual command line used for compiling each file, etc., as it occurs.
I am trying to move a project from Gmake to MSBuild, but from examining the results of running the executable, it appears that perhaps a file was not compiled as expected.
I am trying to change the optimization level of just one file from -O3 to -Ofast, which in previous experiments using Gmake, has indicated a dramatic speedup in the code. Instead the code appears to be running much more slowly, as if it were perhaps compiled with the -O0 option.