On 24 April 2011 14:38, BlackHe@art <[email protected]> wrote: > Wes, if you tell me how I can rebuild with debugging symbols I would > do it. sorry but I'm new to all that stuff.... >
I don't have an un-adultered APE around to give good directions with, but, basically, you need to supply the -g flag to the compiler. You'll also need to remove the *.o files to make sure the module gets rebuild with them. Things to try in the Makefile (one will work, don't know which) CPPFLAGS += -g CFLAGS += -g CC += -g Also, the build system has changed radically since I looked at it last. Hm.... You might be able to simply do "CFLAGS=-g; export CFLAGS" before running configure. Anthony -- if the two of us ever get around to banging on the build system, we should definitely have "debug" and "release" builds, for exactly this ^^^ type of user and situation. Wes -- Wesley W. Garland Director, Product Development PageMail, Inc. +1 613 542 2787 x 102 -- You received this message because you are subscribed to the Google Groups "APE Project" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/ape-project?hl=en --- APE Project (Ajax Push Engine) Official website : http://www.ape-project.org/ Git Hub : http://github.com/APE-Project/
