在发布版本中删除调试字符串

时间:2017-06-01 21:28:29

标签: c debugging release armcc rvds

我使用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

1 个答案:

答案 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中对此进行了测试,但没有表现出您描述的行为。