I am compiling a C++ source code with MinGW's g++. When analysing the performance of this on Vtune, the "bottom up" tab will let me see the assembly, but not the source code. This is the list of warnings that Vtune gives after running the program:
I assume this is because the symbol files are missing, but I have tried compiling with
-g
-g3
-gstabs
-gdwarf-2
-gdwarf-3
but none of these work, it still cannot locate the debugging information.