I tried to degub c automake project with Cygwin in Windows. I ran the following:
./configure CFLAGS="-g -o0"
make
after that, I loaded
gdb file src/slim.exe
and it says
no debugging symbols found
file out says:
file src/slim.exe
src/slim.exe: PE32+ executable (console) x86-64 (stripped to external PDB), for MS Windows
when I check with "./configure -help", it shows that --enable-debug no at default.
How can I fix it?