./configure make make install 在 Windows 上使用 icc

发布于 2024-10-04 12:22:21 字数 229 浏览 3 评论 0原文

由于我的显卡在 Linux 上的性能问题,我最近切换回 Windows7 (x64),但我怀念在 Windows 上轻松编译开源软件的能力。我有一个 intel c 编译器的副本,它比 gnu c 编译器要好一些,我想用它来编译为 linux 编写的软件。 我已经安装了 cygwin 并成功编译了一些东西。虽然“make-install”不起作用,但这是另一个问题。现在我的问题是,我如何告诉“make”使用Windows intel编译器?

I recently switched back to Windows7 (x64) because of perfomance issues with my graphics card on linux but i miss the abilty to easily compile open source software on Windows. I have a copy of the intel c compiler which is somewhat better than the gnu c compiler and i would like to use it to compile software written for linux.
I've already installed cygwin and managed to compile something. The 'make-install' didn't work though but that's another issue. Now my question is, how can i tell 'make' to use the windows intel compiler?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深居我梦 2024-10-11 12:22:21

您在 OSS 中找到的大多数配置脚本可能都是由 Autotools 创建的。这些基本上应该支持国际刑事法院。要使用它,尽管您可能并行安装了 GCC,但仍需要将环境变量 CC 设置为 Intel 的 C 编译器和 CXX(cygwin) 路径在运行 configure 之前将代码> 添加到英特尔的 C++ 编译器。

您可能会遇到无条件设置只有 GCC 能理解的编译器标志的软件包。不过,我听说,到目前为止,icc 实际上实现了其中的大部分。

更新

之前曾提出过类似的问题

Most of the configure scripts you'll find in OSS have probably been created by the Autotools. Those should, basically, support the icc. To use it, although you may have GCC installed side-by-side, it would be necessary to set the environment variable CC to the (cygwin) path to Intel's C compiler and CXX to Intel's C++ compiler prior to running configure.

You may run into trouble with software packages that unconditionally set compiler flags that only GCC understands. I have heard, though, that, by now, icc actually implements most of these.

Update

Something similar has been asked before.

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