svn commit: r522533 - in head/devel/binutils: . files
John Baldwin
jhb at FreeBSD.org
Thu Jan 9 18:05:54 UTC 2020
Author: jhb (src,doc committer)
Date: Thu Jan 9 18:05:53 2020
New Revision: 522533
URL: https://svnweb.freebsd.org/changeset/ports/522533
Log:
Fix gas for FreeBSD/sparc64.
Since binutils 2.30, gas treated FreeBSD/sparc64 the same as NetBSD
and OpenBSD and generated incorrect code as a result.
PR: 243119
Submitted by: Michael Reim
Reviewed by: bapt (maintainer), emaste
Differential Revision: https://reviews.freebsd.org/D23087
Added:
head/devel/binutils/files/patch-gas-configure.tgt (contents, props changed)
Modified:
head/devel/binutils/Makefile
Modified: head/devel/binutils/Makefile
==============================================================================
--- head/devel/binutils/Makefile Thu Jan 9 18:05:12 2020 (r522532)
+++ head/devel/binutils/Makefile Thu Jan 9 18:05:53 2020 (r522533)
@@ -4,6 +4,7 @@
PORTNAME= binutils
PORTVERSION= 2.33.1
PORTEPOCH?= 1
+PORTREVISION= 1
CATEGORIES?= devel
MASTER_SITES= SOURCEWARE/binutils/releases
Added: head/devel/binutils/files/patch-gas-configure.tgt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/binutils/files/patch-gas-configure.tgt Thu Jan 9 18:05:53 2020 (r522533)
@@ -0,0 +1,12 @@
+--- gas/configure.tgt.orig 2020-01-07 16:52:58.735417000 +0100
++++ gas/configure.tgt 2020-01-07 16:54:02.168703000 +0100
+@@ -392,7 +392,8 @@
+
+ sparc-*-linux-*) fmt=elf em=linux ;;
+ sparc-*-solaris*) fmt=elf em=solaris ;;
+- sparc-*-*bsd*) fmt=elf em=nbsd ;;
++ sparc-*-freebsd*) fmt=elf em=freebsd ;;
++ sparc-*-netbsd* | sparc-*-openbsd*) fmt=elf em=nbsd ;;
+
+ spu-*-elf) fmt=elf ;;
+
More information about the svn-ports-all
mailing list