如何确定 bjam 中 cxxflags 的值?或者附加到它上面?

发布于 2024-08-30 06:57:11 字数 177 浏览 6 评论 0原文

我需要使用 bjam 添加到编译器标志。因此,要么我需要一种方法来附加到现有标志(例如使用 gmake 的 CXXFLAGS+=whatever),要么我需要知道 cxxflags 当前使用的值,以便我可以用我的添加内容替换它。

像往常一样,该文档让我对 bjam 的复杂性感到惊讶,但距离能够用它做任何有用的事情还差得远。

I need to add to compiler flags using bjam. So either I need a way to append to the existing flags -- like CXXFLAGS+=whatever using gmake -- or I need to know the currently-used value of cxxflags so I can replace it with my additions.

As usual, the documentation leaves me astonished at the complexity of bjam but no closer to being able to do anything useful with it.

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

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

发布评论

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

评论(1

一张白纸 2024-09-06 06:57:11

如果您只想在命令行上执行此操作,您可以通过指定“feature=value”参数来添加标志。在 make CXXFLAGS 的情况下,相应的将是“cxxflags=--some-option”。请参阅 上的 Boost Build 文档部分内置功能供其他可能使用的此类功能使用。如果您使用 Boost Build 作为构建系统,因此需要在 Jamfile 中指定它们,那么您需要向项目和/或目标添加要求(请参阅 BB 项目BBv2 目标)。

If you are only looking to do this on the command line you can add flags by specifying "feature=value" arguments. In the case of the make CXXFLAGS the corresponding would be "cxxflags=--some-option". Refer to the Boost Build docs section on built-in features for other such possible features to use. If you are using Boost Build as your build system, and hence need to specify them in your Jamfiles, then you need to add requirements to you project and/or targets (see BB projects and BBv2 targets).

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