具有内部链接的变量的暂定定义具有不完整的非数组类型:一致的实现显示不同的行为

Posted

技术标签:

【中文标题】具有内部链接的变量的暂定定义具有不完整的非数组类型:一致的实现显示不同的行为【英文标题】:Tentative definition of variable with internal linkage has incomplete non-array type: conforming implementations show different behavior 【发布时间】:2021-12-05 12:10:32 【问题描述】:

后续问题:Why do conforming implementations behave differently w.r.t. incomplete array types with internal linkage?。

上下文:。

示例代码 (t940.c):

static struct s foo;
static struct s int a; foo;

调用:

$ gcc t940.c -c -std=c11 -pedantic -Wall -Wextra -Wno-unused-variable
<nothing>    

$ clang t940.c -c -std=c11 -pedantic -Wall -Wextra -Wno-unused-variable
t940.c:1:17: warning: tentative definition of variable with internal linkage has incomplete non-array type 'struct s' [-Wtentative-definition-incomplete-type]
static struct s foo;
                ^
t940.c:1:15: note: forward declaration of 'struct s'
static struct s foo;
              ^
1 warning generated.

$ cl t940.c /c /std:c11 /Za
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30133 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.

t940.c
t940.c(1): error C2079: 'foo' uses undefined struct 's'
t940.c(2): error C2371: 'foo': redefinition; different basic types
t940.c(1): note: see declaration of 'foo'

$ icl t940.c -c -std=c11 -pedantic -Wno-unused-variable
<nothing> 

现场演示:https://godbolt.org/z/9j8E1634q。

工具版本:

$ gcc --version
gcc (GCC) 11.2.0

$ clang --version
clang version 13.0.0

$ cl
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30133 for x64

# icl is x86-64 icc 2021.1.2 (from godbolt.org)

问题:根据 C11,哪种行为是正确的?

UPD1。创建:https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102821。

【问题讨论】:

IMO,GCC 不正确。 【参考方案1】:

来自 C 标准(6.9.2 外部对象定义)

3 如果对象标识符的声明是暂定的 定义并具有内部链接,声明的类型不应是 类型不完整。

和(4. 一致性)

1 在本国际标准中,“应”被解释为 对实施或程序的要求;反过来, “不得”被解释为禁止

【讨论】:

以上是关于具有内部链接的变量的暂定定义具有不完整的非数组类型:一致的实现显示不同的行为的主要内容,如果未能解决你的问题,请参考以下文章

下面声明的类型不能是不完整类型的语句是啥意思

c struct queue error:“数组类型具有不完整的元素类型”

C 定义的结构数组的元素在编译为 C++ 时具有不完整的类型

如何在c中隐藏结构实现并避免变量同时具有不完整的类型?

静态模板成员变量具有内部链接但未定义

GCC:数组类型具有不完整的元素类型