svn commit: r518744 - head/lang/gcc10-devel
Gerald Pfeifer
gerald at FreeBSD.org
Sun Dec 1 00:03:18 UTC 2019
Author: gerald
Date: Sun Dec 1 00:03:18 2019
New Revision: 518744
URL: https://svnweb.freebsd.org/changeset/ports/518744
Log:
On versions of FreeBSD that that are new enough and made that switch
already, use ELFv2 ABI on powerpc64.
This already is part of lang/gcc8 and lang/gcc9 (and their -devel
siblings); given this is the future of powerpc64 on FreeBSD ensure
GCC development trunk is adopting this as early as possible.
Modified:
head/lang/gcc10-devel/Makefile
Modified: head/lang/gcc10-devel/Makefile
==============================================================================
--- head/lang/gcc10-devel/Makefile Sat Nov 30 23:52:42 2019 (r518743)
+++ head/lang/gcc10-devel/Makefile Sun Dec 1 00:03:18 2019 (r518744)
@@ -68,7 +68,11 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL}
.elif ${ARCH} == powerpc64
CONFIGURE_ENV+= UNAME_m="powerpc64"
+. if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
+CONFIGURE_ARGS+= --with-abi=elfv2
+. else
USE_GCC= yes
+. endif
.endif
LANGUAGES:= c,c++,objc,fortran
More information about the svn-ports-head
mailing list