gpt4 book ai didi

c - GCC 4.6 中奇怪的诊断编译指示行为

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

我有一个 C 程序,其中有几个(尚未)使用的静态函数。我想禁用这些特定功能的警告。我不想禁用所有 -Wunused-function 警告。我正在使用 GCC 4.6。具体来说:

gcc --version

gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

我遵循文档中的建议(使用 pushpop),但我无法让它工作。

我已经创建了一些简化的源代码来调查这个问题。我正在使用 gcc -Wall -o pragma pragma.c(其中 pragma.c)编译它们。我的第一个版本的 pragma.c 看起来像这样:

void foo(int i) { }
static void bar() { }
int main() { return 0; }

不出所料,我在编译时得到了这个:

pragma.c:3:13: warning: ‘bar’ defined but not used [-Wunused-function]

同样如预期的那样,我能够像这样禁用警告(然后编译成功静默):

#pragma GCC diagnostic ignored "-Wunused-function"
void foo(int i) { }
static void bar() { }
int main() { return 0; }

但是后来,我尝试了这个:

void foo(int i) { }
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
static void bar() { }
#pragma GCC diagnostic pop
int main() { return 0; }

当我编译它时,我得到了最初的警告:

pragma.c:4:13: warning: ‘bar’ defined but not used [-Wunused-function]

删除 pop 可以消除警告:

void foo(int i) { }
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
static void bar() { }
int main() { return 0; }

但我需要一种方法来禁用特定代码部分的警告。我没能做到这一点。

我很难想象这怎么可能是预期的行为......但是许多其他人已经使用了这个版本的 GCC,而且如果这是一个错误,它似乎不太可能进入发布版本。

不过,我还是很难看出这种行为如何与文档保持一致,文档中说“在一行之后出现的编译指示不会影响由该行引起的诊断。”

我做错了什么?是否有关于该问题的更多信息,例如错误报告和/或关于可能的解决方法的信息?

最佳答案

这有效(GCC 版本 4.6.1):

#ifdef __GNUC__
#define SUPPRESS_NOT_USED_WARN __attribute__ ((unused))
#else
#define SUPPRESS_NOT_USED_WARN
#endif

void foo() { }
SUPPRESS_NOT_USED_WARN static void bar() { }
int main() { return 0; }

/* or
static void SUPPRESS_NOT_USED_WARN bar() { }
etc. */

/* but not, undefined declarations:
SUPPRESS_NOT_USED_WARN static void bar();
*/

GCC v4.2.4 doc. 5.32 Specifying Attributes of Variables :

unused
        This attribute, attached to a variable, means that the variable is meant to be possibly unused. GCC will not produce a warning for this variable.

GCC v4.2.4 doc. 5.25 Declaring Attributes of Functions (一个更正确的链接,功能,对此感到抱歉。)

unused
        This attribute, attached to a function, means that the function is meant to be possibly unused. GCC will not produce a warning for this function.


当涉及到 pragma pushpop 等时,文档说:

GCC doc. 6.57.10 Diagnostic Pragmas :

Modifies the disposition of a diagnostic. Note that not all diagnostics are modifiable; at the moment only warnings (normally controlled by `-W...') can be controlled, and not all of them. Use -fdiagnostics-show-option to determine which diagnostics are controllable and which option controls them.

它说; “而且不是全部”-Wunused-function 似乎是不甘心被打压的其中之一。选项 fdiagnostics-show-option 似乎默认启用。 (给出启用错误/警告的标志。)。

在命令行中使用 -Wno-unused-function 可以禁用它,但当然是针对所有的,而不仅仅是代码中直接指定的那些。

如果你说:

gcc -Wunused-function -o o mycode.c

您仍然会收到警告,- 因此它与编译过程的 -Wall 设置没有任何关系,在特殊状态下它不会工作。


例如,这有效:

int foo(int i) { return i; }

int main() {
int a;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wuninitialized"
foo(a);
#pragma GCC diagnostic pop

return 0;
}

关于c - GCC 4.6 中奇怪的诊断编译指示行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9832687/

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