Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Oct 2010 20:27:40 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r214177 - projects/binutils-2.17/gnu/usr.bin/binutils/as
Message-ID:  <201010212027.o9LKRe2d003212@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Thu Oct 21 20:27:40 2010
New Revision: 214177
URL: http://svn.freebsd.org/changeset/base/214177

Log:
  Remove bignum-copy.c from SRCS=, as it no longer exists.  Remove
  tc-sparc-fixed.c entirely, since the fix has been integrated into
  contrib/binutils/gas/config/tc-sparc.c by upstream.  Define TARGET_OS
  in addition to the other TARGET_XXX defines.

Deleted:
  projects/binutils-2.17/gnu/usr.bin/binutils/as/tc-sparc-fixed.c
Modified:
  projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile

Modified: projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile
==============================================================================
--- projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile	Thu Oct 21 20:23:53 2010	(r214176)
+++ projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile	Thu Oct 21 20:27:40 2010	(r214177)
@@ -15,7 +15,6 @@ SRCS+=	app.c \
 	as.c \
 	atof-generic.c \
 	atof-ieee.c \
-	bignum-copy.c \
 	cond.c \
 	depend.c \
 	dw2gencfi.c \
@@ -54,8 +53,7 @@ SRCS+=	tc-i386.c
 .elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64"
 SRCS+=	tc-ppc.c
 .elif ${TARGET_ARCH} == "sparc64"
-# change back to tc-sparc.c when new binutils is imported
-SRCS+=	tc-sparc-fixed.c
+SRCS+=	tc-sparc.c
 .else
 SRCS+=	tc-${TARGET_ARCH}.c
 .endif
@@ -69,6 +67,7 @@ CFLAGS+= -DDEFAULT_ARCH=\"${BINUTILS_ARC
 CFLAGS+= -DTARGET_BYTES_BIG_ENDIAN=1
 .endif
 CFLAGS+= -DTARGET_CPU=\"${BINUTILS_ARCH}\"
+CFLAGS+= -DTARGET_OS=\"${TARGET_OS}\"
 CFLAGS+= -DTARGET_CANONICAL=\"${TARGET_TUPLE}\"
 CFLAGS+= -DTARGET_ALIAS=\"${TARGET_TUPLE}\"
 CFLAGS+= -DVERSION=\"${VERSION}\"



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