svn commit: r433253 - in head/lang: gcc6-aux gnatcross-aarch64

John Marino marino at FreeBSD.org
Fri Feb 3 17:09:23 UTC 2017


Author: marino
Date: Fri Feb  3 17:09:22 2017
New Revision: 433253
URL: https://svnweb.freebsd.org/changeset/ports/433253

Log:
  gnatcross-aarch64: Fix configuration
  
  There are no target specific configuration arguments for
  gnatcross-aarch64, but the ARG_TARGET_SPECIFIC variable still has to be
  defined, otherwise ARMv7-specific arguments are used (discovered when
  disabled TLS caused an error).

Modified:
  head/lang/gcc6-aux/Makefile.version
  head/lang/gnatcross-aarch64/Makefile

Modified: head/lang/gcc6-aux/Makefile.version
==============================================================================
--- head/lang/gcc6-aux/Makefile.version	Fri Feb  3 16:23:29 2017	(r433252)
+++ head/lang/gcc6-aux/Makefile.version	Fri Feb  3 17:09:22 2017	(r433253)
@@ -8,7 +8,7 @@ BUILD_RELEASE=		yes
 MAIN_PR=		0
 UTIL_PR=		0
 ARMV7_PR=		1
-ARM64_PR=		0
+ARM64_PR=		1
 X86_PR=			1
 
 .if ${BUILD_RELEASE:Mno}

Modified: head/lang/gnatcross-aarch64/Makefile
==============================================================================
--- head/lang/gnatcross-aarch64/Makefile	Fri Feb  3 16:23:29 2017	(r433252)
+++ head/lang/gnatcross-aarch64/Makefile	Fri Feb  3 17:09:22 2017	(r433253)
@@ -21,4 +21,6 @@ MASTERDIR=	${.CURDIR}/../../lang/gnatdro
 PATCHDIR=	${.CURDIR}/files
 DESCR=		${.CURDIR}/pkg-descr
 
+ARG_TARGET_SPECIFIC=	# override ARM settings
+
 .include "${MASTERDIR}/Makefile"


More information about the svn-ports-all mailing list