From 1cd08b1f8e2260ce3c807b9cd3084ec6e26ff3e0 Mon Sep 17 00:00:00 2001 From: bsiegert Date: Fri, 18 Sep 2020 18:27:33 +0000 Subject: Pullup ticket #6326 - requested by he lang/libLLVM: PowerPC build fix Revisions pulled up: - lang/libLLVM/hacks.mk 1.1 --- Module Name: pkgsrc Committed By: he Date: Tue Sep 15 16:16:29 UTC 2020 Added Files: pkgsrc/lang/libLLVM: hacks.mk Log Message: On powerpc, use -mlongcall so that we don't get 24-bit relocation overflow. --- lang/libLLVM/hacks.mk | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lang/libLLVM/hacks.mk diff --git a/lang/libLLVM/hacks.mk b/lang/libLLVM/hacks.mk new file mode 100644 index 00000000000..7da33b9322b --- /dev/null +++ b/lang/libLLVM/hacks.mk @@ -0,0 +1,13 @@ +# $NetBSD: hacks.mk,v 1.1.2.2 2020/09/18 18:27:33 bsiegert Exp $ + +.if !defined(LIBLLVM_HACKS_MK) +LIBLLVM_HACKS_MK= defined + +# [ Tue Sep 15 07:21:13 CEST 2020 : he ] +# On NetBSD/powerpc, enable -mlongcall, to avoid relocation overflows +.if ${MACHINE_ARCH} == "powerpc" +CFLAGS+= -mlongcall +CXXFLAGS+= -mlongcall +.endif + +.endif # LIBLLVM_HACKS_MK -- cgit v1.2.3