Why does the debugging finish without allow me to participate? Basically the debugging process is just running the program. Once I click "start" or "step into", the debugging ends without any further interaction on my part.This usually happens if you forgot to compile with the -g debug switch, if you additionally enabled optimisations (with some compilers at last), and/or if you stripped the symbols using the -s switch.
Why does the debugging finish without allow me to participate? Basically the debugging process is just running the program. Once I click "start" or "step into", the debugging ends without any further interaction on my part.This usually happens if you forgot to compile with the -g debug switch, if you additionally enabled optimisations (with some compilers at last), and/or if you stripped the symbols using the -s switch.
But where is the log stored? I can't find it.
Thank you.
-------------- Clean: Debug in test3 ---------------
Cleaned "test3 - Debug"
-------------- Build: Debug in test3 ---------------
mingw32-gcc.exe -Wall -g -Wall -g -IC:\curl-7.28.0\include\curl -c "C:\Users\thismoment\Documents\c programming\test3\main.c" -o obj\Debug\main.o
mingw32-g++.exe -LC:\curl-7.28.0\lib -o bin\Debug\test3.exe obj\Debug\main.o C:\curl-7.28.0\lib\libcurl.a C:\curl-7.28.0\lib\libcurldll.a
Output size is 25.28 KB
Process terminated with status 0 (0 minutes, 0 seconds)
0 errors, 0 warnings
If I write a program in CB(in 64 bit Windows 7), is the program 32 bit or 64 bit?
From the wiki: http://wiki.codeblocks.org/index.php?title=Debugging_with_Code::Blocks#Use_32bit_CDB_for_32bit_programs_and_64bit_CDB_for_64bit_programs
"It seems that debugging a 32bit program with 64bit CDB doesn't work on Windows 7, but 32bit CDB works perfectly."
If I write a program in CB(in 64 bit Windows 7), is the program 32 bit or 64 bit?
Your log shows no -g flag for the linker.