fix(build): 修复调试符号处理和头文件包含问题

修正了Makefile中目标文件名称的错误引用,以解决链接错误。同时,调整了debug.h中的预处理器宏条件,
以确保正确处理调试断言。
This commit is contained in:
zzy 2024-08-27 09:24:59 +08:00
parent 553e4f3df1
commit 80edff8092

View File

@ -70,7 +70,7 @@
#define Log(format, ...) (NULL)
#endif
#ifdef __DEBUG_LEVEL__ >= 1
#if __DEBUG_LEVEL__ >= 1
#define Assert(cond, format, ...) \
do { \
if (!(cond)) { \