Skip to content

Commit

Permalink
Add Python binary path to CMake arguments for the clang-ppc64le-linux…
Browse files Browse the repository at this point in the history
… builder

LLVM now requires Python 3.6 which is not available in the official Ubuntu 16.04
repositories. This patch adds the path to a manually built Python 3.6 to the
CMake arguments of the clang-ppc64le-linux builder.
  • Loading branch information
Baptiste Saleil committed Feb 9, 2021
1 parent 3918a1a commit 45c4f23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildbot/osuosl/master/config/builders.py
Expand Up @@ -603,7 +603,9 @@
checkout_lld=False,
useTwoStage=False,
stage1_config='Release',
extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=ON"])},
extra_cmake_args=[
"-DLLVM_ENABLE_ASSERTIONS=ON",
"-DPYTHON_EXECUTABLE:FILEPATH=/usr/local/bin/python3"])},

{'name' : "clang-ppc64le-rhel",
'tags' : ["clang", "ppc", "ppc64le"],
Expand Down

0 comments on commit 45c4f23

Please sign in to comment.