不使用 sse3 编译 gnu 程序
我正在为架构不支持 sse2 之外的 sse 的设备编译一个应用程序,并且想知道是否可以禁用使用 GNU autoconf 生成的配置脚本中的 sse3 指令进行编译?我知道您可以使用 mno-sse3 选项在 gcc/g++ 中将其关闭,但如果我可以在配置级别将其关闭而不是生成 make 文件,然后手动插入该编译器标志,那就太好了...
I'm compiling an app for a device where the architecture does not support sse beyond sse2, and was wondering is it possible to disable compiling with sse3 instructions from GNU autoconf generated configure scripts? I know you can turn it off in gcc/g++ with mno-sse3 option, but it would be nice if I could turn it off at the configuration level rather than generating a make file and then manually inserting that compiler flag...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是较新版本的 gcc,则只需执行
-march=native
,编译器就会为您处理。编辑:此选项是在 gcc 4.2 中引入的。
If you are using the more recent versions of gcc, you can simply do
-march=native
, and the compiler will handle it for you.Edit: this option was introduced in gcc 4.2.
当然。只需在调用配置之前设置所需的标志:
您可能想尝试 -march if -mtune 做了错误的事情,我最近没有测试过这个。
Sure. Just set the required flags before calling configure:
You might want to try -march if -mtune does the wrong thing, I haven't tested this lately.