Hi, thanks for the debugger :)
There are some issues with newer versions of mingw gcc and g++ and codeclap.
Codeclap is not able to debug executables build with some newer versions of gcc and g++ under windows.
(ie. even some simple helloworld - 64bit build with debug infos)
(The mingw gdb's are working with the generated exe's)
For example:
-breakpoints not working
ie.
start with break at main - no break, it finish the program
start without break at main - stops at some address with assemblercode, message "main found in this program", when "run to main", progam ends
-no sourcecode view (ie. shift-ctrl-p main does not go to the main function - only to some address with assemblercode)
I tried the following:
Chris Wellons (nullprogram):
https://nullprogram.com/blog/2021/03/11/
https://github.com/skeeto/w64devkit
1.6.0 does not work
1.5.0 works
Brecht Sanders
http://winlibs.com/
https://github.com/brechtsanders/winlibs_mingw/releases/
gcc 11, 10.3, most 10.2 - not working
i found only one release working: GCC 10.2.0 + LLVM/Clang 11.0.0 + MinGW-w64 8.0.0 (release 5)
From the description the binutils are different: 2.35.x works, 2.36.x is not working with codeclap.
TDM-GCC are working, but is older, 9.2.0
https://jmeubank.github.io/tdm-gcc/
MSYS2
https://www.msys2.org/
installed some days ago, version 10.2.0 - does not work with codeclap
Please can you take a look at this problem, thanks.