gpt4 book ai didi

c - 为什么 gcc 忽略 __attribute__((stdcall))?

转载 作者:太空狗 更新时间:2023-10-29 15:37:25 40 4
gpt4 key购买 nike

当我使用 gcc 8.1.1 版编译以下 C 源代码时,我收到了一个警告:‘stdcall’ attribute ignored [-Wattributes]

为什么 gcc 选择忽略这个属性,我该怎么做才能让它接受它?

__attribute__((stdcall)) int S(int a) {
return a * (a+1);
}

int main() {
return S(6);
}

最佳答案

gcc documentation说:

stdcall

On x86-32 targets, the stdcall attribute causes the compiler to assume that the called function pops off the stack space used to pass arguments, unless it takes a variable number of arguments.

(强调我的。)

因此,如果您不是为 32 位机器编译,则不能使用 stdcall

关于c - 为什么 gcc 忽略 __attribute__((stdcall))?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52713849/

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