From 0d3c97d304cac61ea96e2fdffba3eaab0fdb9ce8 Mon Sep 17 00:00:00 2001 From: Theo Paris Date: Tue, 20 Jan 2026 00:18:04 -0800 Subject: [PATCH] scripts/bootstrap-prefix: use llvm-core instead of sys-devel --- scripts/bootstrap-prefix.sh | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 3c849933a6..23e7f1d581 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -211,27 +211,27 @@ configure_toolchain() { llvm_deps="dev-build/ninja" compiler_stage1=" ${llvm_deps} - sys-libs/compiler-rt - sys-devel/llvm - sys-devel/lld - sys-devel/clang-common - sys-devel/clang + llvm-core/compiler-rt + llvm-core/llvm + llvm-core/lld + llvm-core/clang-common + llvm-core/clang " CC=clang CXX=clang++ linker= [[ "${BOOTSTRAP_STAGE}" == stage2 ]] && \ - linker=sys-devel/lld + linker=llvm-core/lld compiler=" ${llvm_deps} - sys-libs/compiler-rt - sys-libs/libcxxabi - sys-libs/libcxx - sys-devel/llvm - sys-devel/lld - sys-libs/llvm-libunwind - sys-devel/clang-common - sys-devel/clang + llvm-core/compiler-rt + llvm-core/libcxxabi + llvm-core/libcxx + llvm-core/llvm + llvm-core/lld + llvm-core/llvm-libunwind + llvm-core/clang-common + llvm-core/clang " ;; *)