diff options
author | Michal Rostecki <vadorovsky@protonmail.com> | 2024-10-07 22:01:11 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-10-15 08:13:52 +0100 |
commit | 467cff30d0a828868dcdc98f49afcd7d136234d5 (patch) | |
tree | 61dca8631d4433eaa4b428af72b5fdd23fe48210 | |
parent | crossdev: tweak GUSE_DISABLE* (diff) | |
download | crossdev-467cff30d0a828868dcdc98f49afcd7d136234d5.tar.gz crossdev-467cff30d0a828868dcdc98f49afcd7d136234d5.tar.bz2 crossdev-467cff30d0a828868dcdc98f49afcd7d136234d5.zip |
crossdev: Use libunwind and libc++ in LLVM environments
Avoid build issues on cross environments using musl and LLVM by using
libunwind and libc++ explicitly in the clang configuration. Otherwise,
clang expects GCC libunwind and libstdc++.
These flags were not set explicitly in the clang configuration, because
LLVM profiles were setting them, but that's not the case anymore[0].
[0] https://github.com/gentoo/gentoo/commit/5e5c9d5c524871f5af260557dbd2962b8eec5087
Bug: https://bugs.gentoo.org/941140
Signed-off-by: Michal Rostecki <vadorovsky@protonmail.com>
Closes: https://github.com/gentoo/crossdev/pull/23
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | crossdev | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1736,7 +1736,8 @@ if [[ "${LLVM}" == "yes" ]]; then --rtlib=compiler-rt --sysroot=/usr/${CTARGET} --target=${CTARGET} - --unwindlib=none + --unwindlib=libunwind + --stdlib=libc++ -fuse-ld=lld EOF # Workaround until LLVM libc supports dynamic linking and SSP |