mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 11:17:54 +00:00
[common] crash: fix Linux compilation with -DENABLE_BACKTRACE=NO
Essentially, debug.h defines printTrace as an empty macro when the macro ENABLE_BACKTRACE is not defined, breaking the compilation of crash.c. Fixed by defining a private macro for debug.h only to avoid clashing.
This commit is contained in:
parent
f2c0b8c0b4
commit
b00c25a822
1 changed files with 3 additions and 2 deletions
|
@ -31,8 +31,9 @@ Place, Suite 330, Boston, MA 02111-1307 USA
|
|||
|
||||
#ifdef ENABLE_BACKTRACE
|
||||
void printBacktrace(void);
|
||||
#define DEBUG_PRINT_BACKTRACE() printBacktrace()
|
||||
#else
|
||||
#define printBacktrace
|
||||
#define DEBUG_PRINT_BACKTRACE()
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && !defined(__GNUC__)
|
||||
|
@ -76,7 +77,7 @@ void printBacktrace(void);
|
|||
#define DEBUG_FATAL(fmt, ...) do { \
|
||||
DEBUG_BREAK(); \
|
||||
DEBUG_PRINT("[!]", fmt, ##__VA_ARGS__); \
|
||||
printBacktrace(); \
|
||||
DEBUG_PRINT_BACKTRACE(); \
|
||||
abort(); \
|
||||
} while(0)
|
||||
|
||||
|
|
Loading…
Reference in a new issue