diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -1348,7 +1348,9 @@ 'CMAKE_BUILD_TYPE': 'Release', 'CMAKE_C_COMPILER': 'gcc', 'CMAKE_CXX_COMPILER': 'g++', - 'CMAKE_AR': '/usr/bin/ar'})}, + 'CMAKE_AR': '/usr/bin/ar', + 'LLVM_ENABLE_RUNTIMES': 'libcxx;libcxxabi;libunwind'}, + src_root='runtimes')}, {'name': "fuchsia-x86_64-linux", 'tags' : ["toolchain"], diff --git a/zorg/buildbot/builders/LibcxxAndAbiBuilder.py b/zorg/buildbot/builders/LibcxxAndAbiBuilder.py --- a/zorg/buildbot/builders/LibcxxAndAbiBuilder.py +++ b/zorg/buildbot/builders/LibcxxAndAbiBuilder.py @@ -26,7 +26,9 @@ if depends_on_projects is None: depends_on_projects = ['libcxx','libcxxabi','libunwind'] - src_root = 'llvm' + if src_root is None: + src_root = 'llvm' + build_path = 'build' if f is None: