summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-12-02 09:45:51 +0000
committerobrien <obrien@FreeBSD.org>2002-12-02 09:45:51 +0000
commit55d1c0f00162f6a1309079788b738a6ccffc3dee (patch)
tree1ba2a91c30f3c9323a8396958c934642fb18fd35 /gnu
parent09e9e5550d7b84223671923f4c21210e7af97e1c (diff)
downloadFreeBSD-src-55d1c0f00162f6a1309079788b738a6ccffc3dee.zip
FreeBSD-src-55d1c0f00162f6a1309079788b738a6ccffc3dee.tar.gz
Update for the Binutils 2.13.2 20021127 snapshot import.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/as/alpha-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/as/i386-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/as/sparc64-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/ld/Makefile.alpha12
-rw-r--r--gnu/usr.bin/binutils/ld/config.h2
-rw-r--r--gnu/usr.bin/binutils/libbinutils/config.h2
-rw-r--r--gnu/usr.bin/binutils/libopcodes/config.h11
7 files changed, 24 insertions, 9 deletions
diff --git a/gnu/usr.bin/binutils/as/alpha-freebsd/config.h b/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
index b294051..72005ad 100644
--- a/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/as/i386-freebsd/config.h b/gnu/usr.bin/binutils/as/i386-freebsd/config.h
index 42fd248..b116d09 100644
--- a/gnu/usr.bin/binutils/as/i386-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/i386-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h b/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
index 425723e..4112fe3 100644
--- a/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/ld/Makefile.alpha b/gnu/usr.bin/binutils/ld/Makefile.alpha
index c03e5af..01d1429 100644
--- a/gnu/usr.bin/binutils/ld/Makefile.alpha
+++ b/gnu/usr.bin/binutils/ld/Makefile.alpha
@@ -11,12 +11,12 @@ _alpha_path= \"${TOOLS_PREFIX}/usr/lib\"
.else
_alpha_path= \"/usr/cross/alpha-freebsd/usr/lib\"
.endif
-EMS+= ${NATIVE_EMULATION}
+EMS+= ${NATIVE_EMULATION} elf64alpha alpha
LDSCRIPTS+= ${NATIVE_EMULATION}.x ${NATIVE_EMULATION}.xbn ${NATIVE_EMULATION}.xn ${NATIVE_EMULATION}.xr \
${NATIVE_EMULATION}.xs ${NATIVE_EMULATION}.xu alpha.x alpha.xbn \
alpha.xn alpha.xr alpha.xu ${NATIVE_EMULATION}.xc ${NATIVE_EMULATION}.xsc
-SRCS+= e${NATIVE_EMULATION}.c ealpha.c
-CLEANFILES+= e${NATIVE_EMULATION}.c ealpha.c
+SRCS+= e${NATIVE_EMULATION}.c eelf64alpha.c ealpha.c
+CLEANFILES+= e${NATIVE_EMULATION}.c eelf64alpha.c ealpha.c
e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
scripttempl/elf.sc genscripts.sh stringify.sed
@@ -24,6 +24,12 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
${NATIVE_EMULATION} "" ${NATIVE_EMULATION} ${TARGET_TUPLE}
+eelf64alpha.c: emulparams/elf64alpha.sh emultempl/elf32.em \
+ scripttempl/elf.sc genscripts.sh stringify.sed
+ sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_alpha_path} \
+ ${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
+ elf64alpha "" elf64alpha ${TARGET_TUPLE}
+
ealpha.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em scripttempl/elf.sc \
genscripts.sh stringify.sed
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_alpha_path} \
diff --git a/gnu/usr.bin/binutils/ld/config.h b/gnu/usr.bin/binutils/ld/config.h
index 4623347..d4f30d8 100644
--- a/gnu/usr.bin/binutils/ld/config.h
+++ b/gnu/usr.bin/binutils/ld/config.h
@@ -146,7 +146,7 @@
#define PACKAGE "ld"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1
diff --git a/gnu/usr.bin/binutils/libbinutils/config.h b/gnu/usr.bin/binutils/libbinutils/config.h
index 75f28a9..e85b41c 100644
--- a/gnu/usr.bin/binutils/libbinutils/config.h
+++ b/gnu/usr.bin/binutils/libbinutils/config.h
@@ -158,7 +158,7 @@
#define PACKAGE "binutils"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1
diff --git a/gnu/usr.bin/binutils/libopcodes/config.h b/gnu/usr.bin/binutils/libopcodes/config.h
index 2e26a1c..eaa10ed 100644
--- a/gnu/usr.bin/binutils/libopcodes/config.h
+++ b/gnu/usr.bin/binutils/libopcodes/config.h
@@ -28,6 +28,9 @@
/* Define to `long' if <sys/types.h> doesn't define. */
/* #undef off_t */
+/* Define if you need to in order for stat and other things to work. */
+/* #undef _POSIX_SOURCE */
+
/* Define to `unsigned' if <sys/types.h> doesn't define. */
/* #undef size_t */
@@ -109,6 +112,12 @@
/* Define if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
+/* Define if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
@@ -119,7 +128,7 @@
#define PACKAGE "opcodes"
/* Version number of package */
-/* #define VERSION "2.12" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1
OpenPOWER on IntegriCloud