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

remove debug strings in release build

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