更改 bjam 使用的 GCC 版本

发布于 2024-08-03 06:54:43 字数 144 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(2

瞄了个咪的 2024-08-10 06:54:43

我认为文档中对此进行了描述。你应该有:

using gcc : 4.2 : g++-42 ;

在你的 user-config.jam 和命令行上的“bjam toolset=gcc-4.2”

I think it's described in the documentation. You should have:

using gcc : 4.2 : g++-42 ;

in your user-config.jam and "bjam toolset=gcc-4.2" on the command line

风吹雨成花 2024-08-10 06:54:43

尝试使用以下选项运行 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

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