我使用LOG_DEBUG
函数将调试信息打印到屏幕上。我通过在编译时(发布时间)定义#define _DEBUG
FLAG来使用LOG_DEBUG
来禁用_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
答案 0 :(得分:3)
您可以尝试使用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中对此进行了测试,但没有表现出您描述的行为。