[Dancer-changes] dancer/src Makefile.in,1.1.1.1,1.2
Brought to you by:
bagder
|
From: <ho...@us...> - 2003-09-14 21:38:29
|
Update of /cvsroot/dancer/dancer/src In directory sc8-pr-cvs1:/tmp/cvs-serv743 Modified Files: Makefile.in Log Message: Warn people using the debug mode that it contains code that is likely to loop in crash sitautions. Index: Makefile.in =================================================================== RCS file: /cvsroot/dancer/dancer/src/Makefile.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Makefile.in 13 Nov 2000 02:42:37 -0000 1.1.1.1 +++ Makefile.in 14 Sep 2003 21:38:26 -0000 1.2 @@ -47,6 +47,9 @@ (cd ..; $(MAKE) configure) debug: + @echo !!! The stacktrace function used in debug mode contains system calls + @echo !!! not suitable to be invoked inside a signal handler. Yet, they are. + @echo !!! Only use the debug mode if you really must. You have been warned. $(MAKE) CSPECIAL="-g -DRCS -DDEBUG" $(PRG) ddebug: |