From owner-svn-ports-head@freebsd.org Fri Feb 3 17:09:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC90BCCED98; Fri, 3 Feb 2017 17:09:23 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 994ADFBE; Fri, 3 Feb 2017 17:09:23 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v13H9MsC085978; Fri, 3 Feb 2017 17:09:22 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v13H9Meo085976; Fri, 3 Feb 2017 17:09:22 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201702031709.v13H9Meo085976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 3 Feb 2017 17:09:22 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2017 17:09:23 -0000 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"