更改 bjam 使用的 GCC 版本
我正在尝试使用 bjam 构建一个库(luabind)。我遇到了一个错误,问题似乎是我需要使用 gcc 4.2 进行编译,但是这台计算机(Mac OSX)上的默认值是 4.0。我不想到处更改系统目录中的链接,有没有办法指定 bjam 使用 gcc4.2 而不仅仅是 gcc?
I am trying to build a library (luabind) with bjam. I came across an error and it seems like the problem is that I need to compile with gcc 4.2, but the default on this computer (Mac OSX) is 4.0. I would prefer not to go around changing links in system directories, is there a way to specify to bjam to use gcc4.2 rather than just gcc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为文档中对此进行了描述。你应该有:
在你的 user-config.jam 和命令行上的“bjam toolset=gcc-4.2”
I think it's described in the documentation. You should have:
in your user-config.jam and "bjam toolset=gcc-4.2" on the command line
尝试使用以下选项运行 bjam:
--toolset=gcc --toolset-root=/path/to/gcc/4.2
Try running bjam with these options:
--toolset=gcc --toolset-root=/path/to/gcc/4.2