From c3c77a6a3e77480dcc784e732781f020466323d2 Mon Sep 17 00:00:00 2001 From: Ake Sandgren Date: Wed, 17 Jan 2024 14:23:48 +0100 Subject: [PATCH] clang_aomp: Add missing things in LLVM_ENABLE_(PROJECTS|RUNTIME) It didn't install include/c++ --- easybuild/easyblocks/c/clang_aomp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easybuild/easyblocks/c/clang_aomp.py b/easybuild/easyblocks/c/clang_aomp.py index c0b67bfd74..caca76e767 100644 --- a/easybuild/easyblocks/c/clang_aomp.py +++ b/easybuild/easyblocks/c/clang_aomp.py @@ -230,7 +230,8 @@ def _configure_llvm(self, component): # Setup configuration options for LLVM component['configopts'] = ' '.join([ - "-DLLVM_ENABLE_PROJECTS='clang;lld;compiler-rt'", + "-DLLVM_ENABLE_PROJECTS='clang;lld;clang-tools-extra'", + "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi'", "-DCLANG_DEFAULT_LINKER=lld", "-DGCC_INSTALL_PREFIX=$EBROOTGCCCORE", "-DLLVM_ENABLE_ASSERTIONS=ON",