i使用LOG_DEBUG
函数将调试信息打印到屏幕上。我使用#define _DEBUG
在编译时间(发布时间(中定义_DEBUG
标志来禁用LOG_DEBUG
功能。但是Linux strings
发行构建应用的命令仍然显示编译应用程序中存在的调试字符串。那么消除LOG_DEBUG
参数的替代方法是什么?
#ifdef _DEBUG
#define LOG_DEBUG(fmt, ...) printf("[D][%s:%d %s]", __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__)
#else
#define LOG_DEBUG(fmt, ...)
#endif
LOG_DEBUG("this is a debug string"); // "this is a debug string" exists in app release build yet
我使用的编译器:ARM/Thumb C/C++ Compiler, RVCT3.1 [Build 569]
优化:-O3
您可以尝试使用Stringification:
#include <stdio.h>
#define _DEBUG
#ifdef _DEBUG
#define LOG_DEBUG(str) do { printf("[D][%s:%d %s] ",
__FILE__,
__LINE__,
__FUNCTION__);
puts(#str); } while(0)
#else
#define LOG_DEBUG(str)
#endif
int main() {
LOG_DEBUG(this is a debug string);
return 0;
}
注意:我在clang中对此进行了测试,该clang没有表现出您描述的行为。