diff options
author | Alfred Persson Forsberg <cat@catcream.org> | 2023-08-31 03:26:29 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-08-31 02:32:14 +0100 |
commit | d787403e6b0a7715cc9a90024f7554690dd081bb (patch) | |
tree | 9a86f2cf64143e3e5302cdfe635a280872653a06 | |
parent | fix x86 in LLVM targets check (diff) | |
download | crossdev-20230831.tar.gz crossdev-20230831.tar.bz2 crossdev-20230831.zip |
LLVM/Clang: abort early if libc is glibc20230831
Signed-off-by: Alfred Persson Forsberg <cat@catcream.org>
Closes: https://github.com/gentoo/crossdev/pull/12
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | crossdev | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -966,6 +966,8 @@ done if [[ "${LLVM}" == "yes" ]] ; then WITH_HEADERS="yes" CROSSDEV_OVERLAY_CATEGORY_PREFIX="cross_llvm-" + # To avoid bug reports + [[ "${LPKG}" == "glibc" ]] && die "LLVM/Clang cannot currently compile glibc" fi CROSSDEV_OVERLAY_CATEGORY="${CROSSDEV_OVERLAY_CATEGORY_PREFIX}${CTARGET}" |