gpt4 book ai didi

c - 防止 gcc 内联所有函数

转载 作者:行者123 更新时间:2023-12-02 08:44:48 24 4
gpt4 key购买 nike

以下代码阻止 GCC 编译器内联特定函数。

void __attribute__ ((noinline)) my_func() 
{
...
}

我希望防止 gcc 内联所有函数。我可以不将属性添加到所有函数吗?

最佳答案

避免内联的全局选项(当使用 -O2 或其他优化标志时)是 -fno-inline

-fno-inline Do not expand any functions inline apart from those marked with the always_inline attribute. This is the default when not optimizing.

(来源:https://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/Optimize-Options.html)

如果您这样做是为了减少代码大小,我建议您加入 -Os 选项(针对大小进行优化)

关于c - 防止 gcc 内联所有函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51875623/

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