assert:add a Kconfig option to limit binfile size
Signed-off-by: anjiahao <anjiahao@xiaomi.com>
This commit is contained in:
parent
e6b204f438
commit
8a80c6ab28
9
Kconfig
9
Kconfig
@ -631,6 +631,15 @@ config DEBUG_ASSERTIONS
|
|||||||
set CONFIG_DEBUG_ASSERTIONS=y during debug, but disable the
|
set CONFIG_DEBUG_ASSERTIONS=y during debug, but disable the
|
||||||
assertions on a final, buckled up system.
|
assertions on a final, buckled up system.
|
||||||
|
|
||||||
|
config DEBUG_ASSERTIONS_EXPRESSION
|
||||||
|
bool "Enable Debug Assertions show expression"
|
||||||
|
default n
|
||||||
|
depends on DEBUG_ASSERTIONS
|
||||||
|
---help---
|
||||||
|
This option can display the content information of the ASSERT()
|
||||||
|
function when it is triggered. This option maybe will take up a lot
|
||||||
|
of space.
|
||||||
|
|
||||||
comment "Subsystem Debug Options"
|
comment "Subsystem Debug Options"
|
||||||
|
|
||||||
config DEBUG_AUDIO
|
config DEBUG_AUDIO
|
||||||
|
@ -48,8 +48,14 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define PANIC() __assert(__FILE__, __LINE__, "panic")
|
#define PANIC() __assert(__FILE__, __LINE__, "panic")
|
||||||
|
|
||||||
|
#ifdef CONFIG_DEBUG_ASSERTIONS_EXPRESSION
|
||||||
#define ASSERT(f) do { if (!(f)) __assert(__FILE__, __LINE__, #f); } while (0)
|
#define ASSERT(f) do { if (!(f)) __assert(__FILE__, __LINE__, #f); } while (0)
|
||||||
#define VERIFY(f) do { if ((f) < 0) __assert(__FILE__, __LINE__, #f); } while (0)
|
#define VERIFY(f) do { if ((f) < 0) __assert(__FILE__, __LINE__, #f); } while (0)
|
||||||
|
#else
|
||||||
|
#define ASSERT(f) do { if (!(f)) __assert(__FILE__, __LINE__, "unknown"); } while (0)
|
||||||
|
#define VERIFY(f) do { if ((f) < 0) __assert(__FILE__, __LINE__, "unknown"); } while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DEBUG_ASSERTIONS
|
#ifdef CONFIG_DEBUG_ASSERTIONS
|
||||||
# define DEBUGPANIC() PANIC()
|
# define DEBUGPANIC() PANIC()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user