debugging source fail? (windows, qt6)
-
i'm on Windows
debugging a Qt 6.2 appwhen using an example project, debugging into source works fine.
if i pause the app, the call stack is correct:however, when using my project however (which is monumental, and very custom), call stack of Qt source is all wrong:
note i have the same source path mappings for both projects:
what part(s) of my project config or .pro file could possibly cause these symptoms?
thanks
-dave
ps: free Karaoke software goes to the person who can solve this!
-
the solution was to pass
--pdb
intowindeployqt
. I had copied the qt libs into my exe dir, but not their corresponding pdb files. -
i'm on Windows
debugging a Qt 6.2 appwhen using an example project, debugging into source works fine.
if i pause the app, the call stack is correct:however, when using my project however (which is monumental, and very custom), call stack of Qt source is all wrong:
note i have the same source path mappings for both projects:
what part(s) of my project config or .pro file could possibly cause these symptoms?
thanks
-dave
ps: free Karaoke software goes to the person who can solve this!
@davecotter said in debugging source fail? (windows, qt6):
call stack of Qt source is all wrong
In what way?
-
did you look at the good vs. bad and compare the two?
-
the solution was to pass
--pdb
intowindeployqt
. I had copied the qt libs into my exe dir, but not their corresponding pdb files.