From owner-svn-ports-head@freebsd.org Sun Nov 29 19:12:05 2015 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 55C86A3A40F; Sun, 29 Nov 2015 19:12:05 +0000 (UTC) (envelope-from andreast@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 0BFB71387; Sun, 29 Nov 2015 19:12:04 +0000 (UTC) (envelope-from andreast@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATJC4rB097283; Sun, 29 Nov 2015 19:12:04 GMT (envelope-from andreast@FreeBSD.org) Received: (from andreast@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATJC44C097281; Sun, 29 Nov 2015 19:12:04 GMT (envelope-from andreast@FreeBSD.org) Message-Id: <201511291912.tATJC44C097281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andreast set sender to andreast@FreeBSD.org using -f From: Andreas Tobler Date: Sun, 29 Nov 2015 19:12:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402616 - in head/devel/powerpc64-gcc: . files 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.20 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: Sun, 29 Nov 2015 19:12:05 -0000 Author: andreast (src committer) Date: Sun Nov 29 19:12:03 2015 New Revision: 402616 URL: https://svnweb.freebsd.org/changeset/ports/402616 Log: Add ELFv2 support for FreeBSD PowerPC. Submitted by: nwhitehorn@ Approved by bapt@: Added: head/devel/powerpc64-gcc/files/patch-gcc-freebsd-powerpc64 (contents, props changed) Modified: head/devel/powerpc64-gcc/Makefile Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Sun Nov 29 18:54:44 2015 (r402615) +++ head/devel/powerpc64-gcc/Makefile Sun Nov 29 19:12:03 2015 (r402616) @@ -2,7 +2,7 @@ PORTNAME= gcc PORTVERSION= 5.2.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= powerpc64- Added: head/devel/powerpc64-gcc/files/patch-gcc-freebsd-powerpc64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/files/patch-gcc-freebsd-powerpc64 Sun Nov 29 19:12:03 2015 (r402616) @@ -0,0 +1,29 @@ +--- gcc/config/rs6000/freebsd64.h 2015-11-28 09:06:13.019999000 -0800 ++++ gcc/config/rs6000/freebsd64.h 2015-11-28 09:16:10.459373000 -0800 +@@ -65,6 +65,13 @@ + #define INVALID_64BIT "-m%s not supported in this configuration" + #define INVALID_32BIT INVALID_64BIT + ++/* Use LINUX64 instead of FREEBSD64 for compat with e.g. sysv4le.h */ ++#ifdef LINUX64_DEFAULT_ABI_ELFv2 ++#define ELFv2_ABI_CHECK (rs6000_elf_abi != 1) ++#else ++#define ELFv2_ABI_CHECK (rs6000_elf_abi == 2) ++#endif ++ + #undef SUBSUBTARGET_OVERRIDE_OPTIONS + #define SUBSUBTARGET_OVERRIDE_OPTIONS \ + do \ +@@ -84,6 +91,12 @@ + rs6000_isa_flags &= ~OPTION_MASK_RELOCATABLE; \ + error (INVALID_64BIT, "relocatable"); \ + } \ ++ if (ELFv2_ABI_CHECK) \ ++ { \ ++ rs6000_current_abi = ABI_ELFv2; \ ++ if (dot_symbols) \ ++ error ("-mcall-aixdesc incompatible with -mabi=elfv2"); \ ++ } \ + if (rs6000_isa_flags & OPTION_MASK_EABI) \ + { \ + rs6000_isa_flags &= ~OPTION_MASK_EABI; \