Upgrade to Binutils 2.11.0.

This commit is contained in:
David E. O'Brien 2001-05-28 09:19:47 +00:00
parent 25756f4470
commit f99372a0e4
17 changed files with 747 additions and 608 deletions

View File

@ -8,7 +8,7 @@
# definitions before the sub-Makefile is processed.
#
VERSION= 2.10.1
VERSION= "2.11.0 [FreeBSD]"
TARGET_ARCH?= ${MACHINE_ARCH}
BINUTIL_ARCH=${TARGET_ARCH}

View File

@ -8,7 +8,7 @@ RELTOP:= ../${RELTOP}
MAN= doc/as.1
SRCS+= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \
cond.c ecoff.c expr.c flonum-copy.c flonum-konst.c \
cond.c dwarf2dbg.c ecoff.c expr.c flonum-copy.c flonum-konst.c \
flonum-mult.c frags.c hash.c input-file.c \
input-scrub.c listing.c literal.c macro.c messages.c \
output-file.c read.c sb.c stabs.c \

View File

@ -5,8 +5,8 @@
.include "${.CURDIR}/../Makefile.inc0"
PROG= as
.if ${TARGET_ARCH} != "i386"
NOMAN= 1
.if ${TARGET_ARCH} != "i386"
BINDIR= /usr/libexec/cross/i386-freebsd
.endif
SRCS+= obj-elf.c tc-i386.c

View File

@ -28,9 +28,6 @@
/* 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 */
@ -149,11 +146,14 @@
#define PACKAGE "gas"
/* Version number of package */
/* #define VERSION "000427" */
/* #define VERSION "2.11" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
/* Using strict COFF? */
/* #undef STRICTCOFF */
/* Use ELF stabs for MIPS, not ECOFF stabs */
/* #undef MIPS_STABS_ELF */
@ -164,7 +164,7 @@
/* #undef TARGET_BYTES_BIG_ENDIAN */
/* Default architecture. */
/* #undef DEFAULT_ARCH */
/* #define DEFAULT_ARCH "i386" */
/* Using cgen code? */
/* #undef USING_CGEN */

View File

@ -1,6 +0,0 @@
/* This file is automatically generated. DO NOT EDIT! */
extern ld_emulation_xfer_type ld_elf64alpha_emulation;
#define EMULATION_LIST \
&ld_elf64alpha_emulation, \
0

View File

@ -1,6 +0,0 @@
/* This file is automatically generated. DO NOT EDIT! */
extern ld_emulation_xfer_type ld_elf_i386_emulation;
#define EMULATION_LIST \
&ld_elf_i386_emulation, \
0

View File

@ -1,7 +0,0 @@
/* $FreeBSD$ */
/* This file is automatically generated. DO NOT EDIT! */
extern ld_emulation_xfer_type ld_elf_m68k_emulation;
#define EMULATION_LIST \
&ld_elf_m68k_emulation, \
0

View File

@ -1,7 +0,0 @@
/* $FreeBSD$ */
/* This file is automatically generated. DO NOT EDIT! */
extern ld_emulation_xfer_type ld_elf_powerpc_emulation;
#define EMULATION_LIST \
&ld_elf_powerpc_emulation, \
0

View File

@ -1,7 +0,0 @@
/* $FreeBSD$ */
/* This file is automatically generated. DO NOT EDIT! */
extern ld_emulation_xfer_type ld_elf32_sparc_emulation;
#define EMULATION_LIST \
&ld_elf32_sparc_emulation, \
0

File diff suppressed because it is too large Load Diff

View File

@ -28,9 +28,6 @@
/* 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 */
@ -179,7 +176,7 @@
#define PACKAGE "bfd"
/* Version number of package */
/* #define VERSION "000427" */
/* #define VERSION "2.11" */
/* Define if you have the stpcpy function */
/* #undef HAVE_STPCPY */
@ -214,21 +211,42 @@
/* Define if <sys/procfs.h> has prstatus_t. */
#define HAVE_PRSTATUS_T 1
/* Define if <sys/procfs.h> has prstatus32_t. */
/* #undef HAVE_PRSTATUS32_T */
/* Define if <sys/procfs.h> has prstatus_t.pr_who. */
/* #undef HAVE_PRSTATUS_T_PR_WHO */
/* Define if <sys/procfs.h> has prstatus32_t.pr_who. */
/* #undef HAVE_PRSTATUS32_T_PR_WHO */
/* Define if <sys/procfs.h> has pstatus_t. */
/* #undef HAVE_PSTATUS_T */
/* Define if <sys/procfs.h> has pxstatus_t. */
/* #undef HAVE_PXSTATUS_T */
/* Define if <sys/procfs.h> has pstatus32_t. */
/* #undef HAVE_PSTATUS32_T */
/* Define if <sys/procfs.h> has prpsinfo_t. */
#define HAVE_PRPSINFO_T 1
/* Define if <sys/procfs.h> has prpsinfo32_t. */
/* #undef HAVE_PRPSINFO32_T */
/* Define if <sys/procfs.h> has psinfo_t. */
/* #undef HAVE_PSINFO_T */
/* Define if <sys/procfs.h> has psinfo32_t. */
/* #undef HAVE_PSINFO32_T */
/* Define if <sys/procfs.h> has lwpstatus_t. */
/* #undef HAVE_LWPSTATUS_T */
/* Define if <sys/procfs.h> has lwpxstatus_t. */
/* #undef HAVE_LWPXSTATUS_T */
/* Define if <sys/procfs.h> has lwpstatus_t.pr_context. */
/* #undef HAVE_LWPSTATUS_T_PR_CONTEXT */

View File

@ -1,5 +0,0 @@
#
# $FreeBSD$
#
TARGET= alpha-unknown-freebsd

View File

@ -1,5 +0,0 @@
#
# $FreeBSD$
#
TARGET= i386-unknown-freebsd

View File

@ -6,8 +6,8 @@
LIB= iberty
SRCS= argv.c choose-temp.c concat.c cp-demangle.c cplus-dem.c \
dyn-string.c getopt.c getopt1.c getruntime.c \
hex.c floatformat.c objalloc.c obstack.c \
dyn-string.c getopt.c getopt1.c getpwd.c getruntime.c \
hex.c floatformat.c objalloc.c obstack.c safe-ctype.c \
xatexit.c xexit.c xmalloc.c \
xstrdup.c xstrerror.c
CFLAGS+= -DHAVE_CONFIG_H

View File

@ -1 +0,0 @@
#include <stdlib.h>

View File

@ -6,6 +6,9 @@
/* Define if using alloca.c. */
/* #undef C_ALLOCA */
/* Define to empty if the keyword does not work. */
/* #undef const */
/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
This function is required for alloca.c support on those systems. */
/* #undef CRAY_STACKSEG_END */
@ -16,12 +19,18 @@
/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
/* #undef HAVE_ALLOCA_H */
/* Define if you have a working `mmap' system call. */
#define HAVE_MMAP 1
/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
#define HAVE_SYS_WAIT_H 1
/* Define if you have <vfork.h>. */
/* #undef HAVE_VFORK_H */
/* Define as __inline if that's what the C compiler calls it. */
/* #undef inline */
/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef pid_t */
@ -40,21 +49,12 @@
/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if you can safely include both <sys/time.h> and <time.h>. */
#define TIME_WITH_SYS_TIME 1
/* Define vfork as fork if vfork does not work. */
/* #undef vfork */
/* Define if you have the sys_errlist variable. */
#define HAVE_SYS_ERRLIST 1
/* Define if you have the sys_nerr variable. */
#define HAVE_SYS_NERR 1
/* Define if you have the sys_siglist variable. */
#define HAVE_SYS_SIGLIST 1
/* Define if you have the strerror function. */
#define HAVE_STRERROR 1
/* Define if you have the asprintf function. */
#define HAVE_ASPRINTF 1
@ -62,7 +62,7 @@
#define HAVE_ATEXIT 1
/* Define if you have the basename function. */
/* #undef HAVE_BASENAME */
#define HAVE_BASENAME 1
/* Define if you have the bcmp function. */
#define HAVE_BCMP 1
@ -70,6 +70,9 @@
/* Define if you have the bcopy function. */
#define HAVE_BCOPY 1
/* Define if you have the bsearch function. */
#define HAVE_BSEARCH 1
/* Define if you have the bzero function. */
#define HAVE_BZERO 1
@ -199,6 +202,12 @@
/* Define if you have the waitpid function. */
#define HAVE_WAITPID 1
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
@ -211,6 +220,9 @@
/* Define if you have the <sys/file.h> header file. */
#define HAVE_SYS_FILE_H 1
/* Define if you have the <sys/mman.h> header file. */
#define HAVE_SYS_MMAN_H 1
/* Define if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
@ -223,5 +235,21 @@
/* Define if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define if you have the <time.h> header file. */
#define HAVE_TIME_H 1
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define if errno must be declared even when <errno.h> is included. */
/* #undef NEED_DECLARATION_ERRNO */
/* Define if you have the sys_errlist variable. */
#define HAVE_SYS_ERRLIST 1
/* Define if you have the sys_nerr variable. */
#define HAVE_SYS_NERR 1
/* Define if you have the sys_siglist variable. */
#define HAVE_SYS_SIGLIST 1

View File

@ -28,9 +28,6 @@
/* 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 */
@ -122,7 +119,7 @@
#define PACKAGE "opcodes"
/* Version number of package */
/* #define VERSION "000427" */
/* #define VERSION "2.11" */
/* Define if you have the stpcpy function */
/* #undef HAVE_STPCPY */