mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
Fix a build problem if ENABLE_CHECKING is not defined.
* dwarf.c (ENABLE_CHECKING): Define to 0 if not previously set.
This commit is contained in:

committed by
Nick Clifton

parent
83b0a6865c
commit
c485e47599
@ -41,6 +41,10 @@
|
||||
#define CHAR_BIT 8
|
||||
#endif
|
||||
|
||||
#ifndef ENABLE_CHECKING
|
||||
#define ENABLE_CHECKING 0
|
||||
#endif
|
||||
|
||||
#undef MAX
|
||||
#undef MIN
|
||||
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||
|
Reference in New Issue
Block a user