svn commit: r214177 - projects/binutils-2.17/gnu/usr.bin/binutils/as
Dimitry Andric
dim at FreeBSD.org
Thu Oct 21 20:27:40 UTC 2010
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}\"
More information about the svn-src-projects
mailing list