commit:     ec4e0f71bc9a31613234efe5ea5685c46feaa2b2
Author:     Michal Rostecki <vadorovsky <AT> protonmail <DOT> com>
AuthorDate: Mon Aug  4 11:54:44 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug  6 12:29:18 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec4e0f71

llvm-runtimes/libcxxabi: Support build with cross emerge wrapper

When cross emerge wrapper is used, using `llvm_prepend_path` without
any options, results in prepending the following path:

```
${ESYSROOT}/usr/lib/llvm/${slot}/bin
```

For example:

```
/usr/aarch64-unknown-linux-musl/usr/lib/llvm/19/bin
```

The problem is that cross emerge wrapper uses a cross clang wrapper as
a compiler, e.g. `aarch64-unknown-linux-musl-clang`. However, the file
with such name can be usually found in two places:

* `/usr/lib/llvm/19/bin/aarch64-unknown-linux-musl-clang`, which is
  a clang wrapper that calls the host clang with appropriate
  configuration. We want to call that file.
* 
`/usr/aarch64-unknown-linux-musl/usr/lib/llvm/19/bin/aarch64-unknown-linux-musl-clang`,
  which is an actual aarch64 compiler binary. We cannot execute it on
  x86_64, or other incompatible host.

However, the path added by `llvm_prepend_path` causes resolution of
`aarch64-unknown-linux-musl-clang` to the second path, therefore causing
errors like:

```
/usr/aarch64-unknown-linux-musl/usr/lib/llvm/19/bin/clang: cannot execute 
binary file: Exec format error
```

Solve that by:

* Using `LLVM_ROOT` CMake parameter to point the build to LLVM library
  artifacts.
* Using `llvm_prepend_path` with `-b` argument if we need clang, which
  is the case when either `clang` or `test` USE flags are enabled.

Signed-off-by: Michal Rostecki <vadorovsky <AT> protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/39280
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Part-of: https://github.com/gentoo/gentoo/pull/39280
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 llvm-runtimes/libcxxabi/libcxxabi-19.1.7.ebuild      | 5 +++--
 llvm-runtimes/libcxxabi/libcxxabi-20.1.8.ebuild      | 5 +++--
 llvm-runtimes/libcxxabi/libcxxabi-21.1.0.9999.ebuild | 5 +++--
 llvm-runtimes/libcxxabi/libcxxabi-22.0.0.9999.ebuild | 5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/llvm-runtimes/libcxxabi/libcxxabi-19.1.7.ebuild 
b/llvm-runtimes/libcxxabi/libcxxabi-19.1.7.ebuild
index a91a67d49302..6c3f4635d98d 100644
--- a/llvm-runtimes/libcxxabi/libcxxabi-19.1.7.ebuild
+++ b/llvm-runtimes/libcxxabi/libcxxabi-19.1.7.ebuild
@@ -47,9 +47,8 @@ python_check_deps() {
 }
 
 multilib_src_configure() {
-       llvm_prepend_path "${LLVM_MAJOR}"
-
        if use clang; then
+               llvm_prepend_path -b "${LLVM_MAJOR}"
                local -x CC=${CTARGET}-clang
                local -x CXX=${CTARGET}-clang++
                strip-unsupported-flags
@@ -61,6 +60,8 @@ multilib_src_configure() {
 
        local libdir=$(get_libdir)
        local mycmakeargs=(
+               -DLLVM_ROOT="${ESYSROOT}/usr/lib/llvm/${LLVM_MAJOR}"
+
                -DCMAKE_CXX_COMPILER_TARGET="${CTARGET}"
                -DPython3_EXECUTABLE="${PYTHON}"
                -DLLVM_ENABLE_RUNTIMES="libcxxabi;libcxx"

diff --git a/llvm-runtimes/libcxxabi/libcxxabi-20.1.8.ebuild 
b/llvm-runtimes/libcxxabi/libcxxabi-20.1.8.ebuild
index 156863942964..5668a32deb26 100644
--- a/llvm-runtimes/libcxxabi/libcxxabi-20.1.8.ebuild
+++ b/llvm-runtimes/libcxxabi/libcxxabi-20.1.8.ebuild
@@ -47,9 +47,8 @@ python_check_deps() {
 }
 
 multilib_src_configure() {
-       llvm_prepend_path "${LLVM_MAJOR}"
-
        if use clang; then
+               llvm_prepend_path -b "${LLVM_MAJOR}"
                local -x CC=${CTARGET}-clang
                local -x CXX=${CTARGET}-clang++
                strip-unsupported-flags
@@ -61,6 +60,8 @@ multilib_src_configure() {
 
        local libdir=$(get_libdir)
        local mycmakeargs=(
+               -DLLVM_ROOT="${ESYSROOT}/usr/lib/llvm/${LLVM_MAJOR}"
+
                -DCMAKE_CXX_COMPILER_TARGET="${CTARGET}"
                -DPython3_EXECUTABLE="${PYTHON}"
                -DLLVM_ENABLE_RUNTIMES="libcxxabi;libcxx"

diff --git a/llvm-runtimes/libcxxabi/libcxxabi-21.1.0.9999.ebuild 
b/llvm-runtimes/libcxxabi/libcxxabi-21.1.0.9999.ebuild
index 366ac2ab422e..f929e4caf008 100644
--- a/llvm-runtimes/libcxxabi/libcxxabi-21.1.0.9999.ebuild
+++ b/llvm-runtimes/libcxxabi/libcxxabi-21.1.0.9999.ebuild
@@ -48,9 +48,8 @@ python_check_deps() {
 }
 
 multilib_src_configure() {
-       llvm_prepend_path "${LLVM_MAJOR}"
-
        if use clang; then
+               llvm_prepend_path -b "${LLVM_MAJOR}"
                local -x CC=${CTARGET}-clang
                local -x CXX=${CTARGET}-clang++
                strip-unsupported-flags
@@ -62,6 +61,8 @@ multilib_src_configure() {
 
        local libdir=$(get_libdir)
        local mycmakeargs=(
+               -DLLVM_ROOT="${ESYSROOT}/usr/lib/llvm/${LLVM_MAJOR}"
+
                -DCMAKE_CXX_COMPILER_TARGET="${CTARGET}"
                -DPython3_EXECUTABLE="${PYTHON}"
                -DLLVM_ENABLE_RUNTIMES="libcxxabi;libcxx"

diff --git a/llvm-runtimes/libcxxabi/libcxxabi-22.0.0.9999.ebuild 
b/llvm-runtimes/libcxxabi/libcxxabi-22.0.0.9999.ebuild
index 366ac2ab422e..f929e4caf008 100644
--- a/llvm-runtimes/libcxxabi/libcxxabi-22.0.0.9999.ebuild
+++ b/llvm-runtimes/libcxxabi/libcxxabi-22.0.0.9999.ebuild
@@ -48,9 +48,8 @@ python_check_deps() {
 }
 
 multilib_src_configure() {
-       llvm_prepend_path "${LLVM_MAJOR}"
-
        if use clang; then
+               llvm_prepend_path -b "${LLVM_MAJOR}"
                local -x CC=${CTARGET}-clang
                local -x CXX=${CTARGET}-clang++
                strip-unsupported-flags
@@ -62,6 +61,8 @@ multilib_src_configure() {
 
        local libdir=$(get_libdir)
        local mycmakeargs=(
+               -DLLVM_ROOT="${ESYSROOT}/usr/lib/llvm/${LLVM_MAJOR}"
+
                -DCMAKE_CXX_COMPILER_TARGET="${CTARGET}"
                -DPython3_EXECUTABLE="${PYTHON}"
                -DLLVM_ENABLE_RUNTIMES="libcxxabi;libcxx"

Reply via email to