Skip to content
Snippets Groups Projects
Commit 296ca06e authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

small debugging information change

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7111 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent a31a587b
No related branches found
No related tags found
No related merge requests found
2005-11-15 Kevin P. Fleming <kpfleming@limerick.digium.com>
* Makefile: use -g3 for compiler to include macro information for debugger
* astmm.c (__ast_vasprintf): don't re-use the ap list without copying it; that's not safe on some platforms (issue #5035)
* doc/README.backtrace: add note about properly building Asterisk to be able to produce backtraces; wrap text and remove DOS line endings
......
......@@ -50,8 +50,8 @@ endif
#Overwite config files on "make samples"
OVERWRITE=y
#Include debug symbols in the executables (-g) and profiling info (-pg)
DEBUG=-g #-pg
#Include debug and macro symbols in the executables (-g) and profiling info (-pg)
DEBUG=-g3 #-pg
#Set NOCRYPTO to yes if you do not want to have crypto support or
#dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment