Skip to content
Snippets Groups Projects
Commit f3b23f2a authored by Lars Bilke's avatar Lars Bilke
Browse files

[ogs] Fix Boost with clang.

Boost has to be bumped to 1.69.0:

https://github.com/boostorg/build/pull/368
parent 67335629
No related branches found
No related tags found
No related merge requests found
......@@ -276,7 +276,9 @@ if local_args.ogs != "clean":
elif local_args.pm == "system":
Stage0 += cmake(eula=True, version="3.19.4")
Stage0 += boost(
version=versions["minimum_version"]["boost"], bootstrap_opts=["headers"]
version=versions["minimum_version"]["boost"],
bootstrap_opts=["--with-toolset=clang"] if toolchain.CC == "clang" else [],
b2_opts=["headers"],
)
Stage0 += environment(variables={"BOOST_ROOT": "/usr/local/boost"})
Stage0 += packages(apt=["libxml2-dev"], yum=["libxml2-devel"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment