在与地兰进行汇编时,我可以添加<条码>optnone。
[[clang::optnone]]
void foo() {
// no optimizations applied in here
...
}
void bar() {
// while other functions are still optimized
}
在与亚洲开发银行脱钩时,这确实是有益的。 关于规模太大、无法完全以减速方式编纂的方案(llvm),我可以编篡将CMake编成RelWithDebInfo
,增加一些感兴趣的职能,然后在这些地方进行持续的减小,而不必绕过和打上线的价值观。
Is there any equivalent way to compile all functions in a given file in debug mode, without manually adding the attribute to every function?
Cheers