gpt4 book ai didi

c++ - -march=native 到底是做什么的?

转载 作者:IT老高 更新时间:2023-10-28 22:04:50 28 4
gpt4 key购买 nike

Gentoo Wiki告诉我以下内容:

Warning: GCC 4.2 and above support -march=native. -march=native applies additional settings beyond -march, specific to your CPU. Unless you have a specific reason not to (e.g. distcc cross-compiling), you should probably be using -march=native, rather than anything listed below.

这些附加设置是什么?

最佳答案

没关系。

$ cc -march=core2 -E -v - </dev/null 2>&1 | grep cc1
/[...]/cc1 -E -quiet -v -iprefix /[...]/4.3.2/ - -march=core2

$ cc -march=native -E -v - </dev/null 2>&1 | grep cc1
/[...]/cc1 -E -quiet -v -iprefix /[...]/4.3.2/ - -march=core2 -mcx16 -msahf --param l1-cache-size=32 --param l1-cache-line-size=64 -mtune=core2

我开始非常喜欢这个选项。 -mcx16-msahf 是 gcc 现在可以使用的两个额外的 CPU 指令,这在早期的 Core2 中是不可用的。

关于c++ - -march=native 到底是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3015306/

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