有没有办法配置 waf 来构建 c++ Mac 操作系统中的程序?
我只是遇到一个问题,所有的事情在我的ubuntu上运行良好。 然而,我想让我的 Mac 上的东西正常工作,但糟糕的事情发生了。 它显示以下错误
cc1plus: error: unrecognized command line option "-std=c++0x"
我对 mac 完全陌生,我安装了 xcode 4。 我猜一定有c++0x,但我想知道如何用waf配置它。
多谢!!
I just suffer a problem that the all the things works well on my ubuntu.
However, I want to get things work on my mac, bad thing happens.
it shows the following errors
cc1plus: error: unrecognized command line option "-std=c++0x"
I am total new to mac stuff, I got the xcode 4 installed.
I guess there must be c++0x, but I wonder how can i configure it with waf.
Thanks a lot!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我猜你正在使用 Xcode 提供的 GCC。那就是 GCC 4.2.1,这是一个相当旧的版本,Apple 在可预见的将来不会更新。
您基本上有两个选择:
除了 GCC 之外,Xcode 还提供了 Clang/LLVM,因此您可以改用 Clang/LLVM。 Clang/LLVM 可以识别该
-std=c++0x
选项,但 C++0x 并未像最新版本的 GCC 那样得到完全支持。 LLVM 项目保留一个页面,列出其当前的 C++0x 支持状态。使用更新版本的 GCC。您可以在本地编译它,也可以通过 Mac OS X 上可用的开源包管理器之一安装它:MacPorts、Fink、Homebrew。我真的不知道他们是否能够构建 GCC 以及哪些版本,因此请先与他们核实。
I’m guessing you’re using GCC supplied with Xcode. That’d be GCC 4.2.1, a rather old version that won’t be updated by Apple in the foreseeable future.
You have essentially two options:
Xcode ships Clang/LLVM besides GCC, so you could use Clang/LLVM instead. That
-std=c++0x
option is recognised by Clang/LLVM but C++0x is not as fully supported as in recent versions of GCC. The LLVM project keeps a page listing their current C++0x support status.Use a more recent version of GCC. You can either compile it locally or install it via one the open source package managers available on Mac OS X: MacPorts, Fink, Homebrew. I don’t really know if and which versions of GCC they’re able to build, so check with them first.
由于 Xcode 在 mac 上随 Clang 一起提供,如果您将 waf 配置为使用 c++0x,您可以获得 c++0x 支持强>叮当。
在您的
wscript
中添加配置:然后运行 waf 作为:
As Xcode comes with Clang on mac you can get c++0x support if you configure waf to use Clang.
In your
wscript
add to configure:Then run waf as:
在 Mac 上,使用 clang 不会出错。您必须自己构建编译器(例如使用您已有的 gcc-4.2)。它有-std=c++0x。对它的支持并不完整,但一直在增长。在 Mac 上,您还可以查看 libc++ 以获得 C++0x 支持(与 clang 结合)。
On Mac you can't go wrong with clang. You'll have to build the compiler yourself (using e.g. gcc-4.2 that you already have). It has -std=c++0x. The support for it isn't complete, but it is growing all the time. On the Mac you might also look at libc++ for C++0x support (combined with clang).