[prev in list] [next in list] [prev in thread] [next in thread] 

List:       gentoo-dev
Subject:    [gentoo-dev] [PATCH v2] llvm.eclass: add tuple -> LLVM_TARGETS translate function
From:       matoro <matoro_mailinglist_gentoo-dev () matoro ! tk>
Date:       2023-11-26 17:42:01
Message-ID: c91e835f05cb079d7530ed34467ed946 () matoro ! tk
[Download RAW message or body]

https://github.com/gentoo/gentoo/pull/33996

To be used in support of dev-lang/rust under crossdev.  Cross-compiled
rust needs LLVM with support for both host and destination targets.

Bug: https://bugs.gentoo.org/680652
Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk>
---
  eclass/llvm.eclass | 31 +++++++++++++++++++++++++++++++
  1 file changed, 31 insertions(+)

diff --git a/eclass/llvm.eclass b/eclass/llvm.eclass
index 57faa48819db..1f3ff1f61c2d 100644
--- a/eclass/llvm.eclass
+++ b/eclass/llvm.eclass
@@ -174,6 +174,37 @@ get_llvm_prefix() {
  	echo "${prefix}/usr/lib/llvm/$(get_llvm_slot "${@}")"
  }

+# @FUNCTION: llvm_tuple_to_target
+# @USAGE: [<tuple>]
+# @DESCRIPTION:
+# Translate a tuple into a target suitable for LLVM_TARGETS.
+# Defaults to ${CHOST} if not specified.
+llvm_tuple_to_target() {
+	debug-print-function ${FUNCNAME} "${@}"
+
+	case ${1:-${CHOST}} in
+		aarch64*) echo "AArch64";;
+		amdgcn*) echo "AMDGPU";;
+		arc*) echo "ARC";;
+		arm*) echo "ARM";;
+		avr*) echo "AVR";;
+		bpf*) echo "BPF";;
+		csky*) echo "CSKY";;
+		loong*) echo "LoongArch";;
+		m68k*) echo "M68k";;
+		mips*) echo "Mips";;
+		msp430*) echo "MSP430";;
+		nvptx*) echo "NVPTX";;
+		powerpc*) echo "PowerPC";;
+		riscv*) echo "RISCV";;
+		sparc*) echo "Sparc";;
+		s390*) echo "SystemZ";;
+		x86_64*|i?86*) echo "X86";;
+		xtensa*) echo "Xtensa";;
+		*) die "Unknown LLVM target for tuple ${1:-${CHOST}}"
+	esac
+}
+
  # @FUNCTION: llvm_fix_clang_version
  # @USAGE: <variable-name>...
  # @DESCRIPTION:
-- 
2.42.1


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic