summaryrefslogtreecommitdiff
path: root/llvm-core/llvm/llvm-21.0.0.9999.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-04-24 16:40:46 +0200
committerMichał Górny <mgorny@gentoo.org>2025-04-24 16:41:33 +0200
commit23964af28bf7a6463abbb774e5d31863ac3c067e (patch)
treee97c44aef1051ff35b6a7ad2db39720abbae5255 /llvm-core/llvm/llvm-21.0.0.9999.ebuild
parentb4107a6dd8eca51b3db5d57830358f19c93d7de8 (diff)
downloadgentoo-23964af28bf7a6463abbb774e5d31863ac3c067e.tar.gz
gentoo-23964af28bf7a6463abbb774e5d31863ac3c067e.tar.bz2
gentoo-23964af28bf7a6463abbb774e5d31863ac3c067e.zip
llvm-core/llvm: llvm-mt is built with USE=xml only now
Closes: https://bugs.gentoo.org/954312 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'llvm-core/llvm/llvm-21.0.0.9999.ebuild')
-rw-r--r--llvm-core/llvm/llvm-21.0.0.9999.ebuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm-core/llvm/llvm-21.0.0.9999.ebuild b/llvm-core/llvm/llvm-21.0.0.9999.ebuild
index 68b0dfb7fe08..d04fe8116598 100644
--- a/llvm-core/llvm/llvm-21.0.0.9999.ebuild
+++ b/llvm-core/llvm/llvm-21.0.0.9999.ebuild
@@ -161,6 +161,10 @@ check_distribution_components() {
llvm-debuginfod)
use debuginfod || continue
;;
+ # used only w/ USE=xml
+ llvm-mt)
+ use xml || continue
+ ;;
esac
all_targets+=( "${l}" )
@@ -298,7 +302,6 @@ get_distribution_components() {
llvm-ml
llvm-ml64
llvm-modextract
- llvm-mt
llvm-nm
llvm-objcopy
llvm-objdump
@@ -357,6 +360,9 @@ get_distribution_components() {
use debuginfod && out+=(
llvm-debuginfod
)
+ use xml && out+=(
+ llvm-mt
+ )
fi
printf "%s${sep}" "${out[@]}"