Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Feb 2017 17:09:22 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433253 - in head/lang: gcc6-aux gnatcross-aarch64
Message-ID:  <201702031709.v13H9Meo085976@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702031709.v13H9Meo085976>