how to generate debug file???
Hi
i have a DDD Debugger tool , so i want to debug my application through this tool
but when i am loading my application in the debugger , it says as
"no debugging symbols found"
i normally make my programs as
1) qmake -project
2) qmake
3) make
i saw all there options but i dint find anything right
but i manually typing(or setting) debug flags in Makefile as
CFLAGS = -pipe -g -O2 -Wall -W -D_REENTRANT $(DEFINES)
CXXFLAGS = -pipe -g -O2 -Wall -W -D_REENTRANT $(DEFINES)
then i can able to debug my application
so rather than manually setting is there any options to set debug symbols while qmake or make automatically???
Re: how to generate debug file???
hey guys is this a wrong question or a typical one????????
Re: how to generate debug file???
Quote:
Originally Posted by
sudheer
i normally make my programs as
1) qmake -project
2) qmake
3) make
i saw all there options but i dint find anything right
Make sure you use the step #1 just once or you might run into troubles.
Edit your .pro file and add CONFIG += debug or CONFIG += debug_and_release.