不使用 sse3 编译 gnu 程序

发布于 2024-08-14 16:08:09 字数 177 浏览 9 评论 0原文

我正在为架构不支持 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如日中天 2024-08-21 16:08:09

如果您使用的是较新版本的 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.

堇色安年 2024-08-21 16:08:09

当然。只需在调用配置之前设置所需的标志:

$ CFLAGS="-mtune i386" ./configure --enable-this --disable-that ...

您可能想尝试 -march if -mtune 做了错误的事情,我最近没有测试过这个。

Sure. Just set the required flags before calling configure:

$ CFLAGS="-mtune i386" ./configure --enable-this --disable-that ...

You might want to try -march if -mtune does the wrong thing, I haven't tested this lately.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文