aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Popov <arrowd@FreeBSD.org>2023-05-13 06:54:12 +0000
committerGleb Popov <arrowd@FreeBSD.org>2023-05-13 06:55:09 +0000
commit364471930d77ed3710402c4155a520f24470395a (patch)
treeb5983a017d25a79e99caf47f8e6de12830e5690f
parent1ece97c686ec56bb7376a6e40b5aef984b5bcb7d (diff)
downloadports-364471930d77ed3710402c4155a520f24470395a.tar.gz
ports-364471930d77ed3710402c4155a520f24470395a.zip
lang/ghc: Disable Hadrian build on aarch64 too.
It builds successfully but for some reason only builds the vanilla way. Reported by: pkg-fallout
-rw-r--r--lang/ghc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile
index ed05ab3b02ad..5a41e5e1c4c9 100644
--- a/lang/ghc/Makefile
+++ b/lang/ghc/Makefile
@@ -104,7 +104,7 @@ BUILD_MK= DYNAMIC_GHC_PROGRAMS=${ENABLE_DYNAMIC} \
.include <bsd.port.pre.mk>
-.if ${GHC_VERSION:C/\..*//g} >= 9 && ${ARCH} != i386
+.if ${GHC_VERSION:C/\..*//g} >= 9 && ${ARCH} != i386 && ${ARCH} != aarch64
# hadrian build on i386 fails due to https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269570
# relocation R_386_TLS_LE cannot be used with -shared
USE_HADRIAN= yes