aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-11-15 21:29:55 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-11-15 21:29:55 +0000
commit04f9b2d551cea07e9c89f174dcdc6a382afb0dc7 (patch)
tree0708bbe43c5d68e10aa6436d17c6c97257445972 /gnu/usr.bin
parent5d6d24e9e8ad3965714c720a41307266cb21ac84 (diff)
downloadsrc-04f9b2d551cea07e9c89f174dcdc6a382afb0dc7.tar.gz
src-04f9b2d551cea07e9c89f174dcdc6a382afb0dc7.zip
Upgrade to Binutils 2.10.1.
Notes
Notes: svn path=/head/; revision=68780
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/binutils/Makefile.inc04
-rw-r--r--gnu/usr.bin/binutils/doc/Makefile4
-rw-r--r--gnu/usr.bin/binutils/libbfd/alpha/bfd.h3
-rw-r--r--gnu/usr.bin/binutils/libbfd/i386/bfd.h3
-rw-r--r--gnu/usr.bin/binutils/libbfd/sparc/bfd.h3
-rw-r--r--gnu/usr.bin/binutils/libbfd/sparc64/bfd.h3
-rw-r--r--gnu/usr.bin/binutils/libiberty/Makefile2
7 files changed, 17 insertions, 5 deletions
diff --git a/gnu/usr.bin/binutils/Makefile.inc0 b/gnu/usr.bin/binutils/Makefile.inc0
index 46160c5e29d5..261a92981b27 100644
--- a/gnu/usr.bin/binutils/Makefile.inc0
+++ b/gnu/usr.bin/binutils/Makefile.inc0
@@ -8,7 +8,7 @@
# definitions before the sub-Makefile is processed.
#
-VERSION= 2.10.0
+VERSION= 2.10.1
TARGET_ARCH?= ${MACHINE_ARCH}
.if ${TARGET_ARCH} == "mipsel" || ${TARGET_ARCH} == "mipseb"
@@ -22,7 +22,7 @@ BINUTIL_ARCH=${TARGET_ARCH}
# added to it as we descend into subdirectories.
RELTOP:= ..
-RELSRC= ${RELTOP}/../../../contrib/binutils
+RELSRC= ${RELTOP}/../../../contrib/binutils.2101
SRCDIR= ${.CURDIR}/${RELSRC}
CFLAGS+= -D_GNU_SOURCE
diff --git a/gnu/usr.bin/binutils/doc/Makefile b/gnu/usr.bin/binutils/doc/Makefile
index dbfe76b3d964..a81e6b3517bf 100644
--- a/gnu/usr.bin/binutils/doc/Makefile
+++ b/gnu/usr.bin/binutils/doc/Makefile
@@ -2,7 +2,7 @@
.include "../Makefile.inc0"
-GDBDIR= ${.CURDIR}/../../../../contrib/gdb
+GDBDIR= ${.CURDIR}/../../../../contrib/gdb.291
CONTRIBDIR= ${.CURDIR}/../../../../contrib
.PATH: ${SRCDIR}/gas/doc ${SRCDIR}/ld ${SRCDIR}/bfd/doc ${GDBDIR}/gdb/doc
@@ -17,9 +17,9 @@ INFOENTRY_binutils= "* Binutils: (binutils). The GNU Binary Utilities."
MAKEINFOFLAGS+= --no-validate
MAKEINFOFLAGS+= -I ${SRCDIR}/gas/doc -I ${SRCDIR}/ld -I ${SRCDIR}/bfd/doc
+MAKEINFOFLAGS+= -I ${SRCDIR}/binutils
MAKEINFOFLAGS+= -I ${GDBDIR}/gdb/doc
MAKEINFOFLAGS+= -I ${CONTRIBDIR}/libreadline/doc
-MAKEINFOFLAGS+= -I ${CONTRIBDIR}/binutils/binutils
CLEANFILES= gdb-cfg.texi inc-hist.texi inc-hist.texi.orig
diff --git a/gnu/usr.bin/binutils/libbfd/alpha/bfd.h b/gnu/usr.bin/binutils/libbfd/alpha/bfd.h
index af911c459561..d15fbae056eb 100644
--- a/gnu/usr.bin/binutils/libbfd/alpha/bfd.h
+++ b/gnu/usr.bin/binutils/libbfd/alpha/bfd.h
@@ -53,6 +53,9 @@ extern "C" {
#include "ansidecl.h"
+/* FreeBSD does not adhere to the System V 64-bit ABI. */
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+
/* These two lines get substitutions done by commands in Makefile.in. */
/* #define BFD_VERSION "2.9.5" */
#define BFD_ARCH_SIZE 64
diff --git a/gnu/usr.bin/binutils/libbfd/i386/bfd.h b/gnu/usr.bin/binutils/libbfd/i386/bfd.h
index 618dc1f31cd9..8ce14ccf5efd 100644
--- a/gnu/usr.bin/binutils/libbfd/i386/bfd.h
+++ b/gnu/usr.bin/binutils/libbfd/i386/bfd.h
@@ -53,6 +53,9 @@ extern "C" {
#include "ansidecl.h"
+/* FreeBSD does not adhere to the Intel386 System V ABI. */
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+
/* These two lines get substitutions done by commands in Makefile.in. */
/* #define BFD_VERSION "2.9.5" */
#define BFD_ARCH_SIZE 32
diff --git a/gnu/usr.bin/binutils/libbfd/sparc/bfd.h b/gnu/usr.bin/binutils/libbfd/sparc/bfd.h
index 618dc1f31cd9..fc8182e99544 100644
--- a/gnu/usr.bin/binutils/libbfd/sparc/bfd.h
+++ b/gnu/usr.bin/binutils/libbfd/sparc/bfd.h
@@ -53,6 +53,9 @@ extern "C" {
#include "ansidecl.h"
+/* FreeBSD does not adhere to the Solaris/System V ABI. */
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+
/* These two lines get substitutions done by commands in Makefile.in. */
/* #define BFD_VERSION "2.9.5" */
#define BFD_ARCH_SIZE 32
diff --git a/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h b/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h
index af911c459561..ea0aceccdf9e 100644
--- a/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h
+++ b/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h
@@ -53,6 +53,9 @@ extern "C" {
#include "ansidecl.h"
+/* FreeBSD does not adhere to the Solaris/System V ABI. */
+#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1"
+
/* These two lines get substitutions done by commands in Makefile.in. */
/* #define BFD_VERSION "2.9.5" */
#define BFD_ARCH_SIZE 64
diff --git a/gnu/usr.bin/binutils/libiberty/Makefile b/gnu/usr.bin/binutils/libiberty/Makefile
index 0c66f6069a9e..dd1a99f147e8 100644
--- a/gnu/usr.bin/binutils/libiberty/Makefile
+++ b/gnu/usr.bin/binutils/libiberty/Makefile
@@ -7,7 +7,7 @@
.PATH: ${SRCDIR}/libiberty
LIB= iberty
-SRCS= argv.c basename.c choose-temp.c concat.c cplus-dem.c \
+SRCS= argv.c basename.c choose-temp.c concat.c cp-demangle.c cplus-dem.c dyn-string.c \
fdmatch.c fnmatch.c getopt.c getopt1.c getruntime.c \
hex.c floatformat.c objalloc.c obstack.c spaces.c \
strerror.c strsignal.c xatexit.c xexit.c xmalloc.c \