gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 17:24:50 26 4
gpt4 key购买 nike

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

关于c - 在发布版本中删除调试字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44317362/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com