summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2022-07-10 21:58:01 +0200
committerNikolas Klauser <nikolasklauser@berlin.de>2022-07-22 22:57:37 +0200
commit810adeaa69bd8f877e394427be54a64eccb71bb9 (patch)
tree72f3068a2618c507564e7b0ce9e060dddf5ad89e /runtimes
parent65aedd338c1edd1ebeee709268d507df7c592e6a (diff)
downloadllvm-810adeaa69bd8f877e394427be54a64eccb71bb9.tar.gz
[runtimes] Add pstl to the list of default runtimes to fix the build
Reviewed By: ldionne, #libc, #libc_abi Spies: h-vetinari, sstefan1, libcxx-commits, mgorny Differential Revision: https://reviews.llvm.org/D129452
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt
index 9886e476dfb9..d333de9ee845 100644
--- a/runtimes/CMakeLists.txt
+++ b/runtimes/CMakeLists.txt
@@ -15,7 +15,7 @@ list(INSERT CMAKE_MODULE_PATH 0
# We order libraries to mirror roughly how they are layered, except that compiler-rt can depend
# on libc++, so we put it after.
-set(LLVM_DEFAULT_RUNTIMES "libc;libunwind;libcxxabi;libcxx;compiler-rt;openmp")
+set(LLVM_DEFAULT_RUNTIMES "libc;libunwind;libcxxabi;pstl;libcxx;compiler-rt;openmp")
set(LLVM_ALL_RUNTIMES "${LLVM_DEFAULT_RUNTIMES};llvm-libgcc")
set(LLVM_ENABLE_RUNTIMES "" CACHE STRING
"Semicolon-separated list of runtimes to build (${LLVM_ALL_RUNTIMES}), or \"all\".")