如何确定 bjam 中 cxxflags 的值?或者附加到它上面?
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想在命令行上执行此操作,您可以通过指定“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).