1999-05-03 09:29:11 +02:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl
|
|
|
|
|
|
|
|
AC_PREREQ(2.13)
|
|
|
|
AC_INIT(libbfd.c)
|
|
|
|
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_ISC_POSIX
|
|
|
|
|
2002-08-01 08:47:58 +02:00
|
|
|
AM_INIT_AUTOMAKE(bfd, 2.13.90)
|
2001-10-02 07:58:41 +02:00
|
|
|
# Uncomment the next line to remove the date from the reported bfd version
|
|
|
|
#is_release=y
|
|
|
|
|
|
|
|
changequote(,)dnl
|
|
|
|
bfd_version=`echo "${VERSION}" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$/\1\2\3\4\5/'`
|
|
|
|
changequote([,])dnl
|
|
|
|
|
|
|
|
bfd_version_string="\"${VERSION}\""
|
|
|
|
if test x${is_release} = x; then
|
2002-10-14 14:06:04 +02:00
|
|
|
bfd_version_date=`sed -n -e 's/.*DATE //p' < ${srcdir}/version.h`
|
2001-10-02 07:58:41 +02:00
|
|
|
bfd_version_string="\"${VERSION} ${bfd_version_date}\""
|
|
|
|
fi
|
|
|
|
AC_SUBST(bfd_version)
|
|
|
|
AC_SUBST(bfd_version_string)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
dnl These must be called before AM_PROG_LIBTOOL, because it may want
|
|
|
|
dnl to call AC_CHECK_PROG.
|
|
|
|
AC_CHECK_TOOL(AR, ar)
|
|
|
|
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
|
|
|
|
|
|
|
dnl Default to a non shared library. This may be overridden by the
|
|
|
|
dnl configure option --enable-shared.
|
|
|
|
AM_DISABLE_SHARED
|
|
|
|
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(64-bit-bfd,
|
|
|
|
[ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) want64=true ;;
|
|
|
|
no) want64=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
|
|
|
|
esac],[want64=false])dnl
|
|
|
|
AC_ARG_ENABLE(targets,
|
|
|
|
[ --enable-targets alternative target configurations],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
|
|
|
|
;;
|
|
|
|
no) enable_targets= ;;
|
|
|
|
*) enable_targets=$enableval ;;
|
|
|
|
esac])dnl
|
|
|
|
AC_ARG_ENABLE(commonbfdlib,
|
|
|
|
[ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) commonbfdlib=true ;;
|
|
|
|
no) commonbfdlib=false ;;
|
|
|
|
*) AC_MSG_ERROR([bad value ${enableval} for BFD commonbfdlib option]) ;;
|
|
|
|
esac])dnl
|
|
|
|
AC_ARG_WITH(mmap,
|
|
|
|
[ --with-mmap try using mmap for BFD input files if available],
|
|
|
|
[case "${withval}" in
|
|
|
|
yes) want_mmap=true ;;
|
|
|
|
no) want_mmap=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${withval} for BFD with-mmap option) ;;
|
|
|
|
esac],[want_mmap=false])dnl
|
|
|
|
|
2001-08-10 12:56:47 +02:00
|
|
|
build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
|
2000-04-09 14:17:43 +02:00
|
|
|
AC_ARG_ENABLE(build-warnings,
|
|
|
|
[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) ;;
|
|
|
|
no) build_warnings="-w";;
|
|
|
|
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
|
|
build_warnings="${build_warnings} ${t}";;
|
|
|
|
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
|
|
build_warnings="${t} ${build_warnings}";;
|
|
|
|
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
|
|
echo "Setting warning flags = $build_warnings" 6>&1
|
|
|
|
fi])dnl
|
|
|
|
WARN_CFLAGS=""
|
2002-12-20 01:09:54 +01:00
|
|
|
if test "x${build_warnings}" != x && test "x$GCC" = xyes ; then
|
2000-04-09 14:17:43 +02:00
|
|
|
WARN_CFLAGS="${build_warnings}"
|
|
|
|
fi
|
|
|
|
AC_SUBST(WARN_CFLAGS)
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
AM_CONFIG_HEADER(config.h:config.in)
|
|
|
|
|
|
|
|
if test -z "$target" ; then
|
|
|
|
AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
2002-05-17 12:34:03 +02:00
|
|
|
AM_INSTALL_LIBBFD
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_EXEEXT
|
|
|
|
|
|
|
|
host64=false
|
|
|
|
target64=false
|
2001-08-17 05:54:53 +02:00
|
|
|
bfd_default_target_size=32
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# host stuff:
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
2003-03-13 16:09:29 +01:00
|
|
|
ALL_LINGUAS="fr tr ja es sv da zh_CN"
|
1999-05-03 09:29:11 +02:00
|
|
|
CY_GNU_GETTEXT
|
|
|
|
|
|
|
|
# Permit host specific settings.
|
|
|
|
. ${srcdir}/configure.host
|
|
|
|
|
|
|
|
AC_SUBST(HDEFINES)
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
|
|
|
BFD_HOST_64BIT_LONG=0
|
|
|
|
BFD_HOST_64_BIT_DEFINED=0
|
|
|
|
BFD_HOST_64_BIT=
|
|
|
|
BFD_HOST_U_64_BIT=
|
|
|
|
if test "x${HOST_64BIT_TYPE}" = "xlong"; then
|
|
|
|
BFD_HOST_64BIT_LONG=1
|
|
|
|
elif test "x${HOST_64BIT_TYPE}" != "x"; then
|
|
|
|
BFD_HOST_64_BIT_DEFINED=1
|
|
|
|
BFD_HOST_64_BIT=${HOST_64BIT_TYPE}
|
|
|
|
BFD_HOST_U_64_BIT=${HOST_U_64BIT_TYPE}
|
|
|
|
fi
|
|
|
|
AC_SUBST(BFD_HOST_64BIT_LONG)
|
|
|
|
AC_SUBST(BFD_HOST_64_BIT_DEFINED)
|
|
|
|
AC_SUBST(BFD_HOST_64_BIT)
|
|
|
|
AC_SUBST(BFD_HOST_U_64_BIT)
|
|
|
|
|
|
|
|
BFD_CC_FOR_BUILD
|
|
|
|
|
|
|
|
AC_CHECK_HEADERS(stddef.h string.h strings.h stdlib.h time.h unistd.h)
|
|
|
|
AC_CHECK_HEADERS(fcntl.h sys/file.h sys/time.h)
|
|
|
|
AC_HEADER_TIME
|
|
|
|
AC_HEADER_DIRENT
|
1999-05-28 00:48:53 +02:00
|
|
|
AC_CHECK_FUNCS(fcntl getpagesize setitimer sysconf fdopen getuid getgid)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
BFD_BINARY_FOPEN
|
|
|
|
|
|
|
|
BFD_NEED_DECLARATION(strstr)
|
|
|
|
BFD_NEED_DECLARATION(malloc)
|
|
|
|
BFD_NEED_DECLARATION(realloc)
|
|
|
|
BFD_NEED_DECLARATION(free)
|
|
|
|
BFD_NEED_DECLARATION(getenv)
|
|
|
|
|
|
|
|
# If we are configured native, pick a core file support file.
|
|
|
|
COREFILE=
|
|
|
|
COREFLAG=
|
|
|
|
TRAD_HEADER=
|
|
|
|
if test "${target}" = "${host}"; then
|
|
|
|
case "${host}" in
|
2000-11-06 00:31:45 +01:00
|
|
|
alpha*-*-freebsd*)
|
|
|
|
COREFILE=''
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
alpha*-*-linux-gnu*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/alphalinux.h"'
|
|
|
|
;;
|
2002-05-11 11:10:14 +02:00
|
|
|
alpha*-*-netbsd* | alpha*-*-openbsd*)
|
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
alpha*-*-*) COREFILE=osf-core.lo ;;
|
2001-02-19 07:33:41 +01:00
|
|
|
arm-*-freebsd*) COREFILE='' ;;
|
2001-12-20 04:18:23 +01:00
|
|
|
arm-*-netbsd*) COREFILE=netbsd-core.lo ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
arm-*-riscix) COREFILE=trad-core.lo ;;
|
|
|
|
hppa*-*-hpux*) COREFILE=hpux-core.lo ;;
|
|
|
|
hppa*-*-hiux*) COREFILE=hpux-core.lo ;;
|
|
|
|
hppa*-*-mpeix*) COREFILE=hpux-core.lo ;;
|
|
|
|
hppa*-*-bsd*) COREFILE="hpux-core.lo hppabsd-core.lo"
|
|
|
|
COREFLAG="-DHPUX_CORE -DHPPABSD_CORE" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
i370-*-*)
|
2000-02-23 14:52:23 +01:00
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i370linux.h"'
|
|
|
|
;;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-sequent-bsd*)
|
|
|
|
changequote([,])dnl
|
2000-02-23 14:52:23 +01:00
|
|
|
COREFILE=trad-core.lo
|
1999-05-03 09:29:11 +02:00
|
|
|
TRAD_HEADER='"hosts/symmetry.h"'
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-sequent-sysv4*) ;;
|
|
|
|
i[3456]86-sequent-sysv*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/symmetry.h"'
|
|
|
|
;;
|
2001-08-23 16:33:50 +02:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-bsdi)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote(,)dnl
|
2002-02-02 21:43:38 +01:00
|
|
|
i[3456]86-*-bsd* | i[34567]86-*-freebsd[123] | i[34567]86-*-freebsd[123]\.* | i[34567]86-*-freebsd4\.[01234]* | i[34567]86-*-freebsd*aout*)
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i386bsd.h"'
|
|
|
|
;;
|
2001-02-19 07:33:41 +01:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-freebsd*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=''
|
|
|
|
TRAD_HEADER='"hosts/i386bsd.h"'
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-netbsd* | i[3456]86-*-openbsd*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-esix-sysv3*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/esix.h"'
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-sco3.2v5*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=sco5-core.lo
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-sco* | i[3456]86-*-isc*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i386sco.h"'
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-mach3*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i386mach3.h"'
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-linux-gnu*)
|
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i386linux.h"'
|
|
|
|
;;
|
|
|
|
changequote(,)dnl
|
|
|
|
i[3456]86-*-isc*) COREFILE=trad-core.lo ;;
|
|
|
|
i[3456]86-*-aix*) COREFILE=aix386-core.lo ;;
|
|
|
|
changequote([,])dnl
|
|
|
|
i860-*-mach3* | i860-*-osf1*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/i860mach3.h"'
|
|
|
|
;;
|
|
|
|
mips-dec-bsd*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/mipsbsd.h"'
|
|
|
|
;;
|
|
|
|
mips-dec-mach3*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/mipsmach3.h"'
|
|
|
|
;;
|
|
|
|
mips-*-netbsd* | mips*-*-openbsd*)
|
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
|
|
|
mips-dec-*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/decstation.h"'
|
|
|
|
;;
|
|
|
|
mips-sgi-irix4*) COREFILE=irix-core.lo ;;
|
|
|
|
mips-sgi-irix5*) COREFILE=irix-core.lo ;;
|
|
|
|
mips-sgi-irix6*) COREFILE=irix-core.lo ;;
|
|
|
|
mips-*-mach3*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/mipsmach3.h"'
|
|
|
|
;;
|
|
|
|
mips-*-sysv4*) ;;
|
|
|
|
mips-*-sysv* | mips-*-riscos*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/riscos.h"'
|
|
|
|
;;
|
|
|
|
mips-sony-bsd*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/news-mips.h"'
|
|
|
|
;;
|
|
|
|
m68*-bull*-sysv*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/dpx2.h"'
|
|
|
|
;;
|
|
|
|
m68*-hp-hpux*) COREFILE=hpux-core.lo ;;
|
|
|
|
m68*-hp-bsd*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/hp300bsd.h"'
|
|
|
|
;;
|
|
|
|
m68*-*-linux-gnu*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/m68klinux.h"'
|
|
|
|
;;
|
|
|
|
m68*-motorola-sysv*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/delta68.h"'
|
|
|
|
;;
|
|
|
|
m68*-sony-*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/news.h"'
|
|
|
|
;;
|
|
|
|
m68*-*-netbsd* | m68*-*-openbsd*)
|
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
|
|
|
m68*-apple-aux*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/m68kaux.h"'
|
|
|
|
;;
|
2002-03-18 13:46:27 +01:00
|
|
|
m88*-*-sysv4*)
|
|
|
|
;;
|
|
|
|
m88*-motorola-sysv*)
|
|
|
|
COREFILE=ptrace-core.lo
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
m88*-*-mach3*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/m88kmach3.h"'
|
|
|
|
;;
|
|
|
|
ns32k-pc532-mach)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/pc532mach.h"'
|
|
|
|
;;
|
|
|
|
ns32k-*-netbsd* | ns32k-*-openbsd*)
|
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
2002-03-18 13:46:27 +01:00
|
|
|
rs6000-*-lynx*)
|
|
|
|
COREFILE=lynx-core.lo
|
|
|
|
;;
|
|
|
|
rs6000-*-aix5.* | powerpc-*-aix5.*)
|
|
|
|
COREFILE=rs6000-core.lo
|
|
|
|
COREFLAG="$COREFLAG -DAIX_5_CORE -DAIX_CORE_DUMPX_CORE"
|
|
|
|
;;
|
2000-04-03 23:48:31 +02:00
|
|
|
changequote(,)dnl
|
2002-05-13 15:33:30 +02:00
|
|
|
rs6000-*-aix4.[3-9]* | powerpc-*-aix4.[3-9]*)
|
2000-04-03 23:48:31 +02:00
|
|
|
changequote([,])dnl
|
|
|
|
COREFILE=rs6000-core.lo
|
|
|
|
COREFLAG="$COREFLAG -DAIX_CORE_DUMPX_CORE"
|
2002-05-13 15:33:30 +02:00
|
|
|
# Not all versions of AIX with -DAIX_CORE_DUMPX_CORE
|
|
|
|
# have c_impl as a member of struct core_dumpx
|
|
|
|
AC_MSG_CHECKING([for c_impl in struct core_dumpx])
|
|
|
|
AC_TRY_COMPILE([#include <core.h>],
|
|
|
|
[struct core_dumpx c; c.c_impl = 0;],
|
|
|
|
[AC_DEFINE(HAVE_ST_C_IMPL, 1,
|
|
|
|
[Define if struct core_dumpx has member c_impl])
|
|
|
|
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
|
2000-04-03 23:48:31 +02:00
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
rs6000-*-aix4*) COREFILE=rs6000-core.lo ;;
|
|
|
|
rs6000-*-*) COREFILE=rs6000-core.lo ;;
|
|
|
|
powerpc-*-aix4*) COREFILE=rs6000-core.lo ;;
|
|
|
|
powerpc-*-aix*) COREFILE=rs6000-core.lo ;;
|
|
|
|
powerpc-*-beos*) ;;
|
2001-02-19 07:33:41 +01:00
|
|
|
powerpc-*-freebsd*) COREFILE='' ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
powerpc-*-netbsd*) COREFILE=netbsd-core.lo ;;
|
2001-02-19 07:33:41 +01:00
|
|
|
powerpc-*-*bsd*) COREFILE=netbsd-core.lo ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
s390*-*-*) COREFILE=trad-core.lo ;;
|
2002-01-08 05:23:02 +01:00
|
|
|
sh*-*-netbsd*) COREFILE=netbsd-core.lo ;;
|
2002-05-13 10:33:26 +02:00
|
|
|
sparc-*-netbsd* | sparc*-*-openbsd*)
|
1999-05-03 09:29:11 +02:00
|
|
|
COREFILE=netbsd-core.lo
|
|
|
|
;;
|
|
|
|
tahoe-*-*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/tahoe.h"'
|
|
|
|
;;
|
2002-06-26 05:10:20 +02:00
|
|
|
vax-*-netbsd*) COREFILE=netbsd-core.lo ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
vax-*-ultrix2*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/vaxult2.h"'
|
|
|
|
;;
|
|
|
|
vax-*-ultrix*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/vaxult2.h"'
|
|
|
|
;;
|
|
|
|
vax-*-*)
|
|
|
|
COREFILE=trad-core.lo
|
|
|
|
TRAD_HEADER='"hosts/vaxbsd.h"'
|
|
|
|
;;
|
2002-01-04 15:49:06 +01:00
|
|
|
x86_64-*-netbsd*) COREFILE=netbsd-core.lo ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
case "$COREFILE" in
|
|
|
|
aix386-core.lo) COREFLAG=-DAIX386_CORE ;;
|
|
|
|
hppabsd-core.lo) COREFLAG=-DHPPABSD_CORE ;;
|
|
|
|
hpux-core.lo) COREFLAG=-DHPUX_CORE ;;
|
|
|
|
irix-core.lo) COREFLAG=-DIRIX_CORE ;;
|
|
|
|
lynx-core.lo) COREFLAG=-DLYNX_CORE ;;
|
|
|
|
netbsd-core.lo) COREFLAG=-DNETBSD_CORE ;;
|
|
|
|
osf-core.lo) COREFLAG=-DOSF_CORE ;;
|
|
|
|
ptrace-core.lo) COREFLAG=-DPTRACE_CORE ;;
|
|
|
|
rs6000-core.lo) COREFLAG="$COREFLAG -DAIX_CORE" ;;
|
|
|
|
sco5-core.lo) COREFLAG="$COREFLAG -DSCO5_CORE" ;;
|
|
|
|
trad-core.lo) COREFLAG="$COREFLAG -DTRAD_CORE" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# ELF corefile support has several flavors, but all of
|
|
|
|
# them use something called <sys/procfs.h>
|
|
|
|
AC_CHECK_HEADERS(sys/procfs.h)
|
|
|
|
if test "$ac_cv_header_sys_procfs_h" = yes; then
|
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prstatus_t)
|
2000-08-30 20:12:21 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prstatus32_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus_t, pr_who)
|
2000-08-30 20:12:21 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus32_t, pr_who)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
|
2000-09-30 02:44:49 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(pxstatus_t)
|
2000-08-30 20:12:21 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(pstatus32_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo_t)
|
2000-08-30 20:12:21 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo32_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(psinfo_t)
|
2000-08-30 20:12:21 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(psinfo32_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(lwpstatus_t)
|
2000-09-30 02:44:49 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(lwpxstatus_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_context)
|
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_reg)
|
2000-01-10 19:50:16 +01:00
|
|
|
BFD_HAVE_SYS_PROCFS_TYPE(win32_pstatus_t)
|
1999-05-03 09:29:11 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_SUBST(COREFILE)
|
|
|
|
AC_SUBST(COREFLAG)
|
2000-05-02 02:12:52 +02:00
|
|
|
if test -n "$TRAD_HEADER"; then
|
|
|
|
AC_DEFINE_UNQUOTED(TRAD_HEADER, $TRAD_HEADER,
|
|
|
|
[Name of host specific header file to include in trad-core.c.])
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# Horrible hacks to build DLLs on Windows.
|
|
|
|
WIN32LDFLAGS=
|
|
|
|
WIN32LIBADD=
|
|
|
|
case "${host}" in
|
|
|
|
*-*-cygwin*)
|
|
|
|
if test "$enable_shared" = "yes"; then
|
|
|
|
WIN32LDFLAGS="-no-undefined"
|
|
|
|
WIN32LIBADD="-L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin -lkernel32"
|
|
|
|
fi
|
|
|
|
;;
|
2001-10-22 02:40:48 +02:00
|
|
|
*-*-linux*)
|
2001-10-21 08:51:03 +02:00
|
|
|
# We borrow WIN32LIBADD so that the shared libbfd won't depend on
|
|
|
|
# libiberty.a.
|
2001-10-22 20:45:35 +02:00
|
|
|
case "${host}" in
|
|
|
|
mips*-*-linux*)
|
|
|
|
# Linux/MIPS uses PIC by default.
|
|
|
|
if test "$enable_shared" = "yes"; then
|
|
|
|
WIN32LIBADD="-L../libiberty -liberty"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
2002-03-04 02:16:53 +01:00
|
|
|
changequote(,)dnl
|
2002-12-20 01:09:54 +01:00
|
|
|
x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
|
2002-03-04 02:16:53 +01:00
|
|
|
changequote([,])dnl
|
|
|
|
if test -n "$x"; then
|
2001-10-22 20:45:35 +02:00
|
|
|
WIN32LIBADD="-L../libiberty/pic -liberty"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2001-10-21 08:51:03 +02:00
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
esac
|
|
|
|
AC_SUBST(WIN32LDFLAGS)
|
|
|
|
AC_SUBST(WIN32LIBADD)
|
|
|
|
|
|
|
|
# target stuff:
|
|
|
|
|
|
|
|
# Canonicalize the secondary target names.
|
|
|
|
if test -n "$enable_targets" ; then
|
|
|
|
for targ in `echo $enable_targets | sed 's/,/ /g'`
|
|
|
|
do
|
1999-09-15 01:29:35 +02:00
|
|
|
result=`$ac_config_sub $targ 2>/dev/null`
|
1999-05-03 09:29:11 +02:00
|
|
|
if test -n "$result" ; then
|
|
|
|
canon_targets="$canon_targets $result"
|
|
|
|
else
|
|
|
|
# Allow targets that config.sub doesn't recognize, like "all".
|
|
|
|
canon_targets="$canon_targets $targ"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
all_targets=false
|
|
|
|
defvec=
|
|
|
|
selvecs=
|
2002-11-05 02:18:56 +01:00
|
|
|
assocvecs=
|
1999-05-03 09:29:11 +02:00
|
|
|
selarchs=
|
|
|
|
TDEFINES=
|
|
|
|
for targ in $target $canon_targets
|
|
|
|
do
|
|
|
|
if test "x$targ" = "xall"; then
|
|
|
|
all_targets=true
|
2002-11-05 02:18:56 +01:00
|
|
|
assocvecs="$assocvecs $targ_defvec $targ_selvecs"
|
1999-05-03 09:29:11 +02:00
|
|
|
else
|
|
|
|
. $srcdir/config.bfd
|
|
|
|
if test "x$targ" = "x$target"; then
|
|
|
|
defvec=$targ_defvec
|
|
|
|
fi
|
|
|
|
selvecs="$selvecs $targ_defvec $targ_selvecs"
|
|
|
|
selarchs="$selarchs $targ_archs"
|
|
|
|
TDEFINES="$TDEFINES $targ_cflags"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
AC_SUBST(TDEFINES)
|
|
|
|
|
|
|
|
# This processing still needs to be done if we're to decide properly whether
|
|
|
|
# 64-bit support needs to be compiled in. Currently, it will be included if
|
|
|
|
# the default or any other explicitly requested target requires it; it
|
|
|
|
# will not be included on a 32-bit host if no 64-bit target is requested, and
|
1999-09-20 00:43:16 +02:00
|
|
|
# no "--with-64-bit-bfd" option is given, even if "--enable-targets=all" is
|
1999-05-03 09:29:11 +02:00
|
|
|
# used.
|
|
|
|
|
|
|
|
# uniq the default and selected vectors in all the configured targets.
|
|
|
|
f=""
|
|
|
|
for i in $selvecs ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*) f="$f $i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
selvecs="$f"
|
|
|
|
|
|
|
|
|
2002-11-05 02:18:56 +01:00
|
|
|
# uniq the associated vectors in all the configured targets.
|
|
|
|
f=""
|
|
|
|
for i in $assocvecs ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*) f="$f $i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
assocvecs="$f"
|
|
|
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
# uniq the architectures in all the configured targets.
|
|
|
|
f=""
|
|
|
|
for i in $selarchs ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*) f="$f $i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
selarchs="$f"
|
|
|
|
|
|
|
|
# Target backend .o files.
|
|
|
|
tb=
|
|
|
|
|
2001-12-13 12:09:34 +01:00
|
|
|
elf="elf.lo elflink.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
for vec in $selvecs
|
|
|
|
do
|
2001-08-17 05:54:53 +02:00
|
|
|
target_size=32
|
1999-05-03 09:29:11 +02:00
|
|
|
case "$vec" in
|
|
|
|
# This list is alphabetized to make it easy to compare
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
# with the two vector lists in targets.c. For the same reason,
|
|
|
|
# use one entry per line, even though this leads to long lines.
|
1999-05-03 09:29:11 +02:00
|
|
|
a29kcoff_big_vec) tb="$tb coff-a29k.lo cofflink.lo" ;;
|
|
|
|
a_out_adobe_vec) tb="$tb aout-adobe.lo aout32.lo" ;;
|
2002-06-17 04:27:38 +02:00
|
|
|
aix5coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
aout0_big_vec) tb="$tb aout0.lo aout32.lo" ;;
|
|
|
|
aout_arm_big_vec) tb="$tb aout-arm.lo aout32.lo" ;;
|
|
|
|
aout_arm_little_vec) tb="$tb aout-arm.lo aout32.lo" ;;
|
|
|
|
aout_mips_big_vec) tb="$tb mipsbsd.lo aout32.lo" ;;
|
|
|
|
aout_mips_little_vec) tb="$tb mipsbsd.lo aout32.lo" ;;
|
|
|
|
apollocoff_vec) tb="$tb coff-apollo.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
arm_epoc_pe_big_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
arm_epoc_pe_little_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
arm_epoc_pei_big_vec) tb="$tb epoc-pei-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
arm_epoc_pei_little_vec) tb="$tb epoc-pei-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
armcoff_big_vec) tb="$tb coff-arm.lo cofflink.lo " ;;
|
|
|
|
armcoff_little_vec) tb="$tb coff-arm.lo cofflink.lo " ;;
|
|
|
|
armnetbsd_vec) tb="$tb armnetbsd.lo aout32.lo" ;;
|
|
|
|
armpe_big_vec) tb="$tb pe-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
armpe_little_vec) tb="$tb pe-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
armpei_big_vec) tb="$tb pei-arm.lo peigen.lo cofflink.lo " ;;
|
|
|
|
armpei_little_vec) tb="$tb pei-arm.lo peigen.lo cofflink.lo " ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
b_out_vec_big_host) tb="$tb bout.lo aout32.lo" ;;
|
|
|
|
b_out_vec_little_host) tb="$tb bout.lo aout32.lo" ;;
|
2000-04-18 06:03:16 +02:00
|
|
|
bfd_efi_app_ia32_vec) tb="$tb efi-app-ia32.lo peigen.lo cofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_efi_app_ia64_vec) tb="$tb efi-app-ia64.lo pepigen.lo cofflink.lo"; target_size=64 ;;
|
2000-03-27 10:39:14 +02:00
|
|
|
bfd_elf32_avr_vec) tb="$tb elf32-avr.lo elf32.lo $elf" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_big_generic_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_bigarc_vec) tb="$tb elf32-arc.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_bigarm_oabi_vec) tb="$tb elfarm-oabi.lo elf32.lo $elf" ;;
|
* Makefile.am: Remove entries for elf32-qnx.[ch].
* Makefile.in: Regenerate.
* config.bfd: Change arm-nto to use bfd_elf32_{big|little}arm_vec,
ppc-nto to use bfd_elf32_powerpc{le}_vec, sh-nto to use
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure.in: Remove support for bfd_elf32_sh{l}qnx_vec,
bfd_elf32_powerpc{le}qnx_vec, bfd_elf32_{big|little}armqnx_vec,
and bfd_elf32_i386qnx_vec, and removed elf32-qnx.lo from other targets.
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure: Regenerate.
* elf32-qnx.c: Remove.
* elf32-qnx.h: Remove.
* elf.c: Remove calls to QNX specific set_nonloadable_filepos,
is_contained_by_filepos, and copy_private_bfd_data_p.
* elf32-i386.c: Remove QNX extended bfd support.
* elf32-ppc.c: Remove QNX extended bfd support.
* elf32-sh.c: Remove QNX extended bfd support.
* elfarm-nabi.c: Remove QNX extended bfd support.
* targets.c: Remove qnx vectors.
* elfxx-target.h (elf_backend_set_nonloadable_filepos): Remove
(elf_backend_is_contained_by_filepos): Remove.
(elf_backend_copy_private_bfd_data_p): Remove.
* po/SRC-POTFILES.in: Regenerate.
2002-11-06 12:38:35 +01:00
|
|
|
bfd_elf32_bigarm_vec) tb="$tb elfarm-nabi.lo elf32.lo $elf" ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf32_bigmips_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo" ;;
|
2000-07-20 18:21:07 +02:00
|
|
|
bfd_elf32_cris_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_d10v_vec) tb="$tb elf32-d10v.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_d30v_vec) tb="$tb elf32-d30v.lo elf32.lo $elf" ;;
|
2002-05-28 16:08:47 +02:00
|
|
|
bfd_elf32_dlx_big_vec) tb="$tb elf32-dlx.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_fr30_vec) tb="$tb elf32-fr30.lo elf32.lo $elf" ;;
|
2002-06-18 23:10:55 +02:00
|
|
|
bfd_elf32_frv_vec) tb="$tb elf32-frv.lo elf32.lo $elf" ;;
|
2001-08-29 03:33:52 +02:00
|
|
|
bfd_elf32_h8300_vec) tb="$tb elf32-h8300.lo elf32.lo $elf" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_hppa_linux_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_hppa_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
|
2000-02-23 14:52:23 +01:00
|
|
|
bfd_elf32_i370_vec) tb="$tb elf32-i370.lo elf32.lo $elf" ;;
|
* Makefile.am: Remove entries for elf32-qnx.[ch].
* Makefile.in: Regenerate.
* config.bfd: Change arm-nto to use bfd_elf32_{big|little}arm_vec,
ppc-nto to use bfd_elf32_powerpc{le}_vec, sh-nto to use
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure.in: Remove support for bfd_elf32_sh{l}qnx_vec,
bfd_elf32_powerpc{le}qnx_vec, bfd_elf32_{big|little}armqnx_vec,
and bfd_elf32_i386qnx_vec, and removed elf32-qnx.lo from other targets.
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure: Regenerate.
* elf32-qnx.c: Remove.
* elf32-qnx.h: Remove.
* elf.c: Remove calls to QNX specific set_nonloadable_filepos,
is_contained_by_filepos, and copy_private_bfd_data_p.
* elf32-i386.c: Remove QNX extended bfd support.
* elf32-ppc.c: Remove QNX extended bfd support.
* elf32-sh.c: Remove QNX extended bfd support.
* elfarm-nabi.c: Remove QNX extended bfd support.
* targets.c: Remove qnx vectors.
* elfxx-target.h (elf_backend_set_nonloadable_filepos): Remove
(elf_backend_is_contained_by_filepos): Remove.
(elf_backend_copy_private_bfd_data_p): Remove.
* po/SRC-POTFILES.in: Regenerate.
2002-11-06 12:38:35 +01:00
|
|
|
bfd_elf32_i386_freebsd_vec) tb="$tb elf32-i386.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_i386_vec) tb="$tb elf32-i386.lo elf32.lo $elf" ;;
|
2000-07-22 Jason Eckhardt <jle@cygnus.com>
* include/opcode/i860.h (btne, bte, bla): Changed these opcodes
to use sbroff ('r') instead of split16 ('s').
(J, K, L, M): New operand types for 16-bit aligned fields.
(ld.x, {p}fld.x, fst.x, pst.d): Changed these opcodes to
use I, J, K, L, M instead of just I.
(T, U): New operand types for split 16-bit aligned fields.
(st.x): Changed these opcodes to use S, T, U instead of just S.
(andh, andnoth, orh, xorh): Deleted 3-register forms as they do not
exist on the i860.
(pfgt.sd, pfle.sd): Deleted these as they do not exist on the i860.
(pfeq.ss, pfeq.dd): New opcodes.
(st.s): Fixed incorrect mask bits.
(fmlow): Fixed incorrect mask bits.
(fzchkl, pfzchkl): Fixed incorrect mask bits.
(faddz, pfaddz): Fixed incorrect mask bits.
(form, pform): Fixed incorrect mask bits.
(pfld.l): Fixed incorrect mask bits.
(fst.q): Fixed incorrect mask bits.
(all floating point opcodes): Fixed incorrect mask bits for
handling of dual bit.
* include/elf/i860.h: New file.
(elf_i860_reloc_type): Defined ELF32 i860 relocations.
* bfd/cpu-i860.c: Added comments.
* bfd/elf32-i860.c (TARGET_LITTLE_SYM): Defined to
bfd_elf32_i860_little_vec.
(TARGET_LITTLE_NAME): Defined to "elf32-i860-little".
(ELF_MAXPAGESIZE): Changed to 4096.
* bfd/targets.c (bfd_elf32_i860_little_vec): Declaration of
new target.
(bfd_target_vector): Added bfd_elf32_i860_little_vec.
* bfd/config.bfd (i860-stardent-sysv4*, i860-stardent-elf*): Added
config for little endian elf32 i860.
(targ_defvec): Define for the new config above
as "bfd_elf32_i860_little_vec".
(targ_selvecs): Define for the new config above
as "bfd_elf32_i860_vec bfd_elf32_i860_little_vec"
* bfd/configure.in (bfd_elf32_i860_little_vec): Added recognition
of new target vec.
* bfd/configure: Regenerated.
* opcodes/i860-dis.c: New file.
(print_insn_i860): New function.
(print_br_address): New function.
(sign_extend): New function.
(BITWISE_OP): New macro.
(I860_REG_PREFIX): New macro.
(grnames, frnames, crnames): New structures.
* opcodes/disassemble.c (ARCH_i860): Define.
(disassembler): Add check for bfd_arch_i860 to set disassemble
function to print_insn_i860.
* include/dis-asm.h (print_insn_i860): Add prototype.
* opcodes/Makefile.in (CFILES): Added i860-dis.c.
(ALL_MACHINES): Added i860-dis.lo.
(i860-dis.lo): New dependences.
* opcodes/configure.in: New bits for bfd_i860_arch.
* opcodes/configure: Regenerated.
2000-07-28 23:10:20 +02:00
|
|
|
bfd_elf32_i860_little_vec) tb="$tb elf32-i860.lo elf32.lo $elf" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_i860_vec) tb="$tb elf32-i860.lo elf32.lo $elf" ;;
|
1999-05-27 23:42:14 +02:00
|
|
|
bfd_elf32_i960_vec) tb="$tb elf32-i960.lo elf32.lo $elf" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_ia64_big_vec) tb="$tb elf32-ia64.lo elf32.lo $elf" ;;
|
2001-12-19 03:14:37 +01:00
|
|
|
bfd_elf32_ia64_hpux_big_vec) tb="$tb elf32-ia64.lo elf32.lo $elf";;
|
2002-07-17 16:15:52 +02:00
|
|
|
bfd_elf32_ip2k_vec) tb="$tb elf32-ip2k.lo elf32.lo $elf" ;;
|
2003-01-03 22:12:28 +01:00
|
|
|
bfd_elf32_iq2000_vec) tb="$tb elf32-iq2000.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_little_generic_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_littlearc_vec) tb="$tb elf32-arc.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_littlearm_oabi_vec) tb="$tb elfarm-oabi.lo elf32.lo $elf" ;;
|
* Makefile.am: Remove entries for elf32-qnx.[ch].
* Makefile.in: Regenerate.
* config.bfd: Change arm-nto to use bfd_elf32_{big|little}arm_vec,
ppc-nto to use bfd_elf32_powerpc{le}_vec, sh-nto to use
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure.in: Remove support for bfd_elf32_sh{l}qnx_vec,
bfd_elf32_powerpc{le}qnx_vec, bfd_elf32_{big|little}armqnx_vec,
and bfd_elf32_i386qnx_vec, and removed elf32-qnx.lo from other targets.
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure: Regenerate.
* elf32-qnx.c: Remove.
* elf32-qnx.h: Remove.
* elf.c: Remove calls to QNX specific set_nonloadable_filepos,
is_contained_by_filepos, and copy_private_bfd_data_p.
* elf32-i386.c: Remove QNX extended bfd support.
* elf32-ppc.c: Remove QNX extended bfd support.
* elf32-sh.c: Remove QNX extended bfd support.
* elfarm-nabi.c: Remove QNX extended bfd support.
* targets.c: Remove qnx vectors.
* elfxx-target.h (elf_backend_set_nonloadable_filepos): Remove
(elf_backend_is_contained_by_filepos): Remove.
(elf_backend_copy_private_bfd_data_p): Remove.
* po/SRC-POTFILES.in: Regenerate.
2002-11-06 12:38:35 +01:00
|
|
|
bfd_elf32_littlearm_vec) tb="$tb elfarm-nabi.lo elf32.lo $elf" ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf32_littlemips_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_m32r_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
|
2000-06-19 03:22:44 +02:00
|
|
|
bfd_elf32_m68hc11_vec) tb="$tb elf32-m68hc11.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_m68hc12_vec) tb="$tb elf32-m68hc12.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_m68k_vec) tb="$tb elf32-m68k.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_m88k_vec) tb="$tb elf32-m88k.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_mcore_big_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_mcore_little_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_mn10200_vec) tb="$tb elf-m10200.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_mn10300_vec) tb="$tb elf-m10300.lo elf32.lo $elf" ;;
|
2002-12-30 20:25:13 +01:00
|
|
|
bfd_elf32_msp430_vec) tb="$tb elf32-msp430.lo elf32.lo $elf" ;;
|
2002-07-31 02:32:10 +02:00
|
|
|
bfd_elf32_nbigmips_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
|
|
|
bfd_elf32_nlittlemips_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
|
|
|
bfd_elf32_ntradbigmips_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
|
|
|
bfd_elf32_ntradlittlemips_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
2001-04-24 17:08:16 +02:00
|
|
|
bfd_elf32_openrisc_vec) tb="$tb elf32-openrisc.lo elf32.lo $elf" ;;
|
2002-01-31 18:33:08 +01:00
|
|
|
bfd_elf32_or32_big_vec) tb="$tb elf32-or32.lo elf32.lo $elf" ;;
|
1999-09-04 19:07:46 +02:00
|
|
|
bfd_elf32_pj_vec) tb="$tb elf32-pj.lo elf32.lo $elf";;
|
|
|
|
bfd_elf32_pjl_vec) tb="$tb elf32-pj.lo elf32.lo $elf";;
|
* Makefile.am: Remove entries for elf32-qnx.[ch].
* Makefile.in: Regenerate.
* config.bfd: Change arm-nto to use bfd_elf32_{big|little}arm_vec,
ppc-nto to use bfd_elf32_powerpc{le}_vec, sh-nto to use
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure.in: Remove support for bfd_elf32_sh{l}qnx_vec,
bfd_elf32_powerpc{le}qnx_vec, bfd_elf32_{big|little}armqnx_vec,
and bfd_elf32_i386qnx_vec, and removed elf32-qnx.lo from other targets.
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure: Regenerate.
* elf32-qnx.c: Remove.
* elf32-qnx.h: Remove.
* elf.c: Remove calls to QNX specific set_nonloadable_filepos,
is_contained_by_filepos, and copy_private_bfd_data_p.
* elf32-i386.c: Remove QNX extended bfd support.
* elf32-ppc.c: Remove QNX extended bfd support.
* elf32-sh.c: Remove QNX extended bfd support.
* elfarm-nabi.c: Remove QNX extended bfd support.
* targets.c: Remove qnx vectors.
* elfxx-target.h (elf_backend_set_nonloadable_filepos): Remove
(elf_backend_is_contained_by_filepos): Remove.
(elf_backend_copy_private_bfd_data_p): Remove.
* po/SRC-POTFILES.in: Regenerate.
2002-11-06 12:38:35 +01:00
|
|
|
bfd_elf32_powerpc_vec) tb="$tb elf32-ppc.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_powerpcle_vec) tb="$tb elf32-ppc.lo elf32.lo $elf" ;;
|
2001-02-10 01:58:38 +01:00
|
|
|
bfd_elf32_s390_vec) tb="$tb elf32-s390.lo elf32.lo $elf" ;;
|
2002-03-18 13:46:27 +01:00
|
|
|
# FIXME: We include cofflink.lo not because it's needed for
|
|
|
|
# bfd_elf32_sh64[l]_vec, but because we include bfd_elf32_sh[l]_vec
|
|
|
|
# which needs it but does not list it. Should be fixed in right place.
|
2002-06-05 03:50:42 +02:00
|
|
|
bfd_elf32_sh64_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" target_size=64 ;;
|
|
|
|
bfd_elf32_sh64l_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" target_size=64 ;;
|
2002-10-16 10:39:38 +02:00
|
|
|
bfd_elf32_sh64lin_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" target_size=64 ;;
|
|
|
|
bfd_elf32_sh64blin_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" target_size=64 ;;
|
|
|
|
bfd_elf32_sh64lnbsd_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" ;;
|
|
|
|
bfd_elf32_sh64nbsd_vec) tb="$tb elf32-sh64.lo elf32-sh64-com.lo elf32.lo $elf cofflink.lo" ;;
|
* Makefile.am: Remove entries for elf32-qnx.[ch].
* Makefile.in: Regenerate.
* config.bfd: Change arm-nto to use bfd_elf32_{big|little}arm_vec,
ppc-nto to use bfd_elf32_powerpc{le}_vec, sh-nto to use
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure.in: Remove support for bfd_elf32_sh{l}qnx_vec,
bfd_elf32_powerpc{le}qnx_vec, bfd_elf32_{big|little}armqnx_vec,
and bfd_elf32_i386qnx_vec, and removed elf32-qnx.lo from other targets.
bfd_elf32_sh{l}_vec, and i386-nto to use bfd_elf32_i386_vec.
* configure: Regenerate.
* elf32-qnx.c: Remove.
* elf32-qnx.h: Remove.
* elf.c: Remove calls to QNX specific set_nonloadable_filepos,
is_contained_by_filepos, and copy_private_bfd_data_p.
* elf32-i386.c: Remove QNX extended bfd support.
* elf32-ppc.c: Remove QNX extended bfd support.
* elf32-sh.c: Remove QNX extended bfd support.
* elfarm-nabi.c: Remove QNX extended bfd support.
* targets.c: Remove qnx vectors.
* elfxx-target.h (elf_backend_set_nonloadable_filepos): Remove
(elf_backend_is_contained_by_filepos): Remove.
(elf_backend_copy_private_bfd_data_p): Remove.
* po/SRC-POTFILES.in: Regenerate.
2002-11-06 12:38:35 +01:00
|
|
|
bfd_elf32_sh_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo" ;;
|
|
|
|
bfd_elf32_shblin_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
|
|
|
|
bfd_elf32_shl_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo" ;;
|
|
|
|
bfd_elf32_shlin_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
|
|
|
|
bfd_elf32_shlnbsd_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
|
|
|
|
bfd_elf32_shnbsd_vec) tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_sparc_vec) tb="$tb elf32-sparc.lo elf32.lo $elf" ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf32_tradbigmips_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo" ;;
|
|
|
|
bfd_elf32_tradlittlemips_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf32_us_cris_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_elf32_v850_vec) tb="$tb elf32-v850.lo elf32.lo $elf" ;;
|
2002-05-30 04:14:13 +02:00
|
|
|
bfd_elf32_vax_vec) tb="$tb elf32-vax.lo elf32.lo $elf" ;;
|
2001-12-08 04:46:03 +01:00
|
|
|
bfd_elf32_xstormy16_vec) tb="$tb elf32-xstormy16.lo elf32.lo $elf" ;;
|
2003-04-01 17:50:31 +02:00
|
|
|
bfd_elf32_xtensa_le_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
|
|
|
|
bfd_elf32_xtensa_be_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
|
2002-10-15 19:14:51 +02:00
|
|
|
bfd_elf64_alpha_freebsd_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_alpha_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_big_generic_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf64_bigmips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_hppa_linux_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_hppa_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_ia64_aix_big_vec) tb="$tb elf64-ia64.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_ia64_aix_little_vec) tb="$tb elf64-ia64.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_ia64_big_vec) tb="$tb elf64-ia64.lo elf64.lo $elf"; target_size=64 ;;
|
2001-12-19 03:14:37 +01:00
|
|
|
bfd_elf64_ia64_hpux_big_vec) tb="$tb elf64-ia64.lo elf64.lo $elf"; target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_ia64_little_vec) tb="$tb elf64-ia64.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_little_generic_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf64_littlemips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
2001-10-30 16:20:14 +01:00
|
|
|
bfd_elf64_mmix_vec) tb="$tb elf64-mmix.lo elf64.lo $elf" target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_powerpc_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
|
|
|
|
bfd_elf64_powerpcle_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf" target_size=64 ;;
|
|
|
|
bfd_elf64_s390_vec) tb="$tb elf64-s390.lo elf64.lo $elf"; target_size=64 ;;
|
2002-06-17 04:27:38 +02:00
|
|
|
bfd_elf64_sh64_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
|
|
|
bfd_elf64_sh64l_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
2002-10-16 10:39:38 +02:00
|
|
|
bfd_elf64_sh64lin_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
|
|
|
bfd_elf64_sh64blin_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
|
|
|
bfd_elf64_sh64lnbsd_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
|
|
|
bfd_elf64_sh64nbsd_vec) tb="$tb elf64-sh64.lo elf64.lo $elf" target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_sparc_vec) tb="$tb elf64-sparc.lo elf64.lo $elf"; target_size=64 ;;
|
2002-04-04 09:01:27 +02:00
|
|
|
bfd_elf64_tradbigmips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
|
|
|
bfd_elf64_tradlittlemips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_elf64_x86_64_vec) tb="$tb elf64-x86-64.lo elf64.lo $elf"; target_size=64 ;;
|
2001-10-30 16:20:14 +01:00
|
|
|
bfd_mmo_vec) tb="$tb mmo.lo" target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_powerpc_pe_vec) tb="$tb pe-ppc.lo peigen.lo cofflink.lo" ;;
|
|
|
|
bfd_powerpc_pei_vec) tb="$tb pei-ppc.lo peigen.lo cofflink.lo" ;;
|
|
|
|
bfd_powerpcle_pe_vec) tb="$tb pe-ppc.lo peigen.lo cofflink.lo" ;;
|
|
|
|
bfd_powerpcle_pei_vec) tb="$tb pei-ppc.lo peigen.lo cofflink.lo" ;;
|
2000-07-20 18:21:07 +02:00
|
|
|
cris_aout_vec) tb="$tb aout-cris.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
demo_64_vec) tb="$tb demo64.lo aout64.lo"; target_size=64 ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
ecoff_big_vec) tb="$tb coff-mips.lo ecoff.lo ecofflink.lo" ;;
|
|
|
|
ecoff_biglittle_vec) tb="$tb coff-mips.lo ecoff.lo ecofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
ecoff_little_vec) tb="$tb coff-mips.lo ecoff.lo ecofflink.lo" ;;
|
|
|
|
ecoffalpha_little_vec) tb="$tb coff-alpha.lo ecoff.lo ecofflink.lo"; target_size=64 ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
go32coff_vec) tb="$tb coff-go32.lo cofflink.lo" ;;
|
|
|
|
go32stubbedcoff_vec) tb="$tb coff-stgo32.lo cofflink.lo" ;;
|
|
|
|
h8300coff_vec) tb="$tb coff-h8300.lo reloc16.lo" ;;
|
|
|
|
h8500coff_vec) tb="$tb coff-h8500.lo reloc16.lo" ;;
|
|
|
|
host_aout_vec) tb="$tb host-aout.lo aout32.lo" ;;
|
|
|
|
hp300bsd_vec) tb="$tb hp300bsd.lo aout32.lo" ;;
|
|
|
|
hp300hpux_vec) tb="$tb hp300hpux.lo aout32.lo" ;;
|
|
|
|
i386aout_vec) tb="$tb i386aout.lo aout32.lo" ;;
|
|
|
|
i386bsd_vec) tb="$tb i386bsd.lo aout32.lo" ;;
|
|
|
|
i386coff_vec) tb="$tb coff-i386.lo cofflink.lo" ;;
|
|
|
|
i386dynix_vec) tb="$tb i386dynix.lo aout32.lo" ;;
|
|
|
|
i386freebsd_vec) tb="$tb i386freebsd.lo aout32.lo" ;;
|
|
|
|
i386linux_vec) tb="$tb i386linux.lo aout32.lo" ;;
|
|
|
|
i386lynx_aout_vec) tb="$tb i386lynx.lo lynx-core.lo aout32.lo" ;;
|
|
|
|
i386lynx_coff_vec) tb="$tb cf-i386lynx.lo cofflink.lo lynx-core.lo" ;;
|
|
|
|
i386mach3_vec) tb="$tb i386mach3.lo aout32.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
i386msdos_vec) tb="$tb i386msdos.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
i386netbsd_vec) tb="$tb i386netbsd.lo aout32.lo" ;;
|
|
|
|
i386os9k_vec) tb="$tb i386os9k.lo aout32.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
i386pe_vec) tb="$tb pe-i386.lo peigen.lo cofflink.lo" ;;
|
|
|
|
i386pei_vec) tb="$tb pei-i386.lo peigen.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
i860coff_vec) tb="$tb coff-i860.lo cofflink.lo" ;;
|
|
|
|
icoff_big_vec) tb="$tb coff-i960.lo cofflink.lo" ;;
|
|
|
|
icoff_little_vec) tb="$tb coff-i960.lo cofflink.lo" ;;
|
|
|
|
ieee_vec) tb="$tb ieee.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
m68k4knetbsd_vec) tb="$tb m68k4knetbsd.lo aout32.lo" ;;
|
|
|
|
m68kaux_coff_vec) tb="$tb coff-aux.lo coff-m68k.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
m68kcoff_vec) tb="$tb coff-m68k.lo cofflink.lo" ;;
|
|
|
|
m68kcoffun_vec) tb="$tb coff-u68k.lo coff-m68k.lo cofflink.lo" ;;
|
|
|
|
m68klinux_vec) tb="$tb m68klinux.lo aout32.lo" ;;
|
|
|
|
m68klynx_aout_vec) tb="$tb m68klynx.lo lynx-core.lo aout32.lo" ;;
|
|
|
|
m68klynx_coff_vec) tb="$tb cf-m68klynx.lo coff-m68k.lo cofflink.lo lynx-core.lo" ;;
|
|
|
|
m68knetbsd_vec) tb="$tb m68knetbsd.lo aout32.lo" ;;
|
|
|
|
m68ksysvcoff_vec) tb="$tb coff-svm68k.lo cofflink.lo" ;;
|
|
|
|
m88kbcs_vec) tb="$tb coff-m88k.lo" ;;
|
2002-06-17 04:27:38 +02:00
|
|
|
m88kmach3_vec) tb="$tb m88kmach3.lo aout32.lo" ;;
|
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (BFD32_LIBS): Add bfdwin.lo, bfdio.lo.
(BFD32_LIBS_CFILES): Add bfdwin.c, bfdio.c.
(BFD_H_FILES): Add bfdwin.c, bfdio.c.
(LIBBFD_H_FILES): Add bfdwin.c, bfdio.c.
Add dependencies for bfdwin.c, bfdio.c.
* bfd.c: Remove bfd_get_mtime, bfd_get_size.
* libbfd.c: Remove real_read, bfd_bread, _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window, bfd_bwrite,
bfd_tell, bfd_flush, bfd_stat, bfd_seek.
* bfdio.c: New file. Contains real_read, bfd_bread, bfd_write,
bfd_tell, bfd_flush, bfd_stat, bfd_seek, bfd_ge_mtime,
bfd_get_size (moved from libbfd.c and bfd.c).
* bfdwin.c New file. Contains _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window (moved from
libbfd.c and bfd.c).
* po/SRC-POTFILES.in: Regenerate.
* po/bfd.pot: Regenerate.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
* aclocal.m4: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (DOCFILES): Add bfdwin.texi, bfdio.texi.
(PROTOS): Add bfdio.p, bfdwin.p.
(SRCDOC): Add bfdio.c, bfdwin.c.
(SRCPROT): Add bfdio.c, bfdwin.c.
(SRCIPROT): Add bfdio.c, bfdwin.c.
(LIBBFD_H_DEP): Add bfdio.c, bfdwin.c.
(BFD_H_DEP): Add bfdio.c, bfdwin.c.
Add rules for bfdio.texi, bfdwin.text.
* bfd.texinfo: Include bfdio.texi.
2002-11-18 17:37:54 +01:00
|
|
|
mach_o_be_vec) tb="$tb mach-o.lo" ;;
|
|
|
|
mach_o_le_vec) tb="$tb mach-o.lo" ;;
|
|
|
|
mach_o_fat_vec) tb="$tb mach-o.lo" ;;
|
1999-09-12 01:37:28 +02:00
|
|
|
mcore_pe_big_vec) tb="$tb pe-mcore.lo peigen.lo cofflink.lo" ;;
|
|
|
|
mcore_pe_little_vec) tb="$tb pe-mcore.lo peigen.lo cofflink.lo" ;;
|
|
|
|
mcore_pei_big_vec) tb="$tb pei-mcore.lo peigen.lo cofflink.lo" ;;
|
|
|
|
mcore_pei_little_vec) tb="$tb pei-mcore.lo peigen.lo cofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
mipslpe_vec) tb="$tb pe-mips.lo peigen.lo cofflink.lo" ;;
|
|
|
|
mipslpei_vec) tb="$tb pei-mips.lo peigen.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
newsos3_vec) tb="$tb newsos3.lo aout32.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
nlm32_alpha_vec) tb="$tb nlm32-alpha.lo nlm32.lo nlm.lo"; target_size=64 ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
nlm32_i386_vec) tb="$tb nlm32-i386.lo nlm32.lo nlm.lo" ;;
|
|
|
|
nlm32_powerpc_vec) tb="$tb nlm32-ppc.lo nlm32.lo nlm.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
nlm32_sparc_vec) tb="$tb nlm32-sparc.lo nlm32.lo nlm.lo" ;;
|
2002-01-31 18:33:08 +01:00
|
|
|
or32coff_big_vec) tb="$tb coff-or32.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
pc532machaout_vec) tb="$tb pc532-mach.lo aout-ns32k.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
pc532netbsd_vec) tb="$tb ns32knetbsd.lo aout-ns32k.lo" ;;
|
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (BFD32_LIBS): Add bfdwin.lo, bfdio.lo.
(BFD32_LIBS_CFILES): Add bfdwin.c, bfdio.c.
(BFD_H_FILES): Add bfdwin.c, bfdio.c.
(LIBBFD_H_FILES): Add bfdwin.c, bfdio.c.
Add dependencies for bfdwin.c, bfdio.c.
* bfd.c: Remove bfd_get_mtime, bfd_get_size.
* libbfd.c: Remove real_read, bfd_bread, _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window, bfd_bwrite,
bfd_tell, bfd_flush, bfd_stat, bfd_seek.
* bfdio.c: New file. Contains real_read, bfd_bread, bfd_write,
bfd_tell, bfd_flush, bfd_stat, bfd_seek, bfd_ge_mtime,
bfd_get_size (moved from libbfd.c and bfd.c).
* bfdwin.c New file. Contains _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window (moved from
libbfd.c and bfd.c).
* po/SRC-POTFILES.in: Regenerate.
* po/bfd.pot: Regenerate.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
* aclocal.m4: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (DOCFILES): Add bfdwin.texi, bfdio.texi.
(PROTOS): Add bfdio.p, bfdwin.p.
(SRCDOC): Add bfdio.c, bfdwin.c.
(SRCPROT): Add bfdio.c, bfdwin.c.
(SRCIPROT): Add bfdio.c, bfdwin.c.
(LIBBFD_H_DEP): Add bfdio.c, bfdwin.c.
(BFD_H_DEP): Add bfdio.c, bfdwin.c.
Add rules for bfdio.texi, bfdwin.text.
* bfd.texinfo: Include bfdio.texi.
2002-11-18 17:37:54 +01:00
|
|
|
pef_vec) tb="$tb pef.lo" ;;
|
|
|
|
pef_xlib_vec) tb="$tb pef.lo" ;;
|
2001-02-19 00:33:11 +01:00
|
|
|
pdp11_aout_vec) tb="$tb pdp11.lo" ;;
|
2001-05-26 00:50:27 +02:00
|
|
|
pmac_xcoff_vec) tb="$tb coff-rs6000.lo xcofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
ppcboot_vec) tb="$tb ppcboot.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
riscix_vec) tb="$tb aout32.lo riscix.lo" ;;
|
2002-03-18 13:46:27 +01:00
|
|
|
rs6000coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
rs6000coff_vec) tb="$tb coff-rs6000.lo xcofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
shcoff_small_vec) tb="$tb coff-sh.lo cofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
shcoff_vec) tb="$tb coff-sh.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
shlcoff_small_vec) tb="$tb coff-sh.lo cofflink.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
shlcoff_vec) tb="$tb coff-sh.lo cofflink.lo" ;;
|
2000-06-19 03:22:44 +02:00
|
|
|
shlpe_vec) tb="$tb pe-sh.lo coff-sh.lo peigen.lo cofflink.lo" ;;
|
|
|
|
shlpei_vec) tb="$tb pei-sh.lo coff-sh.lo peigen.lo cofflink.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
som_vec) tb="$tb som.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
sparccoff_vec) tb="$tb coff-sparc.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
sparcle_aout_vec) tb="$tb aout-sparcle.lo aout32.lo" ;;
|
|
|
|
sparclinux_vec) tb="$tb sparclinux.lo aout32.lo" ;;
|
|
|
|
sparclynx_aout_vec) tb="$tb sparclynx.lo lynx-core.lo aout32.lo" ;;
|
|
|
|
sparclynx_coff_vec) tb="$tb cf-sparclynx.lo lynx-core.lo" ;;
|
|
|
|
sparcnetbsd_vec) tb="$tb sparcnetbsd.lo aout32.lo" ;;
|
|
|
|
sunos_big_vec) tb="$tb sunos.lo aout32.lo" ;;
|
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (BFD32_LIBS): Add bfdwin.lo, bfdio.lo.
(BFD32_LIBS_CFILES): Add bfdwin.c, bfdio.c.
(BFD_H_FILES): Add bfdwin.c, bfdio.c.
(LIBBFD_H_FILES): Add bfdwin.c, bfdio.c.
Add dependencies for bfdwin.c, bfdio.c.
* bfd.c: Remove bfd_get_mtime, bfd_get_size.
* libbfd.c: Remove real_read, bfd_bread, _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window, bfd_bwrite,
bfd_tell, bfd_flush, bfd_stat, bfd_seek.
* bfdio.c: New file. Contains real_read, bfd_bread, bfd_write,
bfd_tell, bfd_flush, bfd_stat, bfd_seek, bfd_ge_mtime,
bfd_get_size (moved from libbfd.c and bfd.c).
* bfdwin.c New file. Contains _bfd_window_internal,
bfd_init_window, bfd_free_window, bfd_get_file_window (moved from
libbfd.c and bfd.c).
* po/SRC-POTFILES.in: Regenerate.
* po/bfd.pot: Regenerate.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
* aclocal.m4: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
2002-11-16 Klee Dienes <kdienes@apple.com>
* Makefile.am (DOCFILES): Add bfdwin.texi, bfdio.texi.
(PROTOS): Add bfdio.p, bfdwin.p.
(SRCDOC): Add bfdio.c, bfdwin.c.
(SRCPROT): Add bfdio.c, bfdwin.c.
(SRCIPROT): Add bfdio.c, bfdwin.c.
(LIBBFD_H_DEP): Add bfdio.c, bfdwin.c.
(BFD_H_DEP): Add bfdio.c, bfdwin.c.
Add rules for bfdio.texi, bfdwin.text.
* bfd.texinfo: Include bfdio.texi.
2002-11-18 17:37:54 +01:00
|
|
|
sym_vec) tb="$tb xsym.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
tic30_aout_vec) tb="$tb aout-tic30.lo" ;;
|
|
|
|
tic30_coff_vec) tb="$tb coff-tic30.lo" ;;
|
2002-08-28 12:38:51 +02:00
|
|
|
tic4x_coff0_vec) tb="$tb coff-tic4x.lo" ;;
|
|
|
|
tic4x_coff0_beh_vec) tb="$tb coff-tic4x.lo" ;;
|
|
|
|
tic4x_coff1_vec) tb="$tb coff-tic4x.lo" ;;
|
|
|
|
tic4x_coff1_beh_vec) tb="$tb coff-tic4x.lo" ;;
|
|
|
|
tic4x_coff2_vec) tb="$tb coff-tic4x.lo" ;;
|
|
|
|
tic4x_coff2_beh_vec) tb="$tb coff-tic4x.lo" ;;
|
2000-04-07 19:06:58 +02:00
|
|
|
tic54x_coff0_beh_vec) tb="$tb coff-tic54x.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
tic54x_coff0_vec) tb="$tb coff-tic54x.lo" ;;
|
2000-04-07 19:06:58 +02:00
|
|
|
tic54x_coff1_beh_vec) tb="$tb coff-tic54x.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
tic54x_coff1_vec) tb="$tb coff-tic54x.lo" ;;
|
2000-04-07 19:06:58 +02:00
|
|
|
tic54x_coff2_beh_vec) tb="$tb coff-tic54x.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
tic54x_coff2_vec) tb="$tb coff-tic54x.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
tic80coff_vec) tb="$tb coff-tic80.lo cofflink.lo" ;;
|
2002-05-30 04:14:13 +02:00
|
|
|
vaxnetbsd_vec) tb="$tb vaxnetbsd.lo aout32.lo" ;;
|
2002-06-09 01:23:08 +02:00
|
|
|
vax1knetbsd_vec) tb="$tb vax1knetbsd.lo aout32.lo" ;;
|
2002-07-01 10:31:53 +02:00
|
|
|
vaxbsd_vec) tb="$tb vaxbsd.lo aout32.lo" ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
versados_vec) tb="$tb versados.lo" ;;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
vms_alpha_vec) tb="$tb vms.lo vms-hdr.lo vms-gsd.lo vms-tir.lo vms-misc.lo"; target_size=64 ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
vms_vax_vec) tb="$tb vms.lo vms-hdr.lo vms-gsd.lo vms-tir.lo vms-misc.lo" ;;
|
|
|
|
w65_vec) tb="$tb coff-w65.lo reloc16.lo" ;;
|
|
|
|
we32kcoff_vec) tb="$tb coff-we32k.lo" ;;
|
|
|
|
z8kcoff_vec) tb="$tb coff-z8k.lo reloc16.lo" ;;
|
|
|
|
|
2002-06-17 04:27:38 +02:00
|
|
|
# These appear out of order in targets.c
|
|
|
|
srec_vec) tb="$tb srec.lo" ;;
|
|
|
|
symbolsrec_vec) tb="$tb srec.lo" ;;
|
|
|
|
tekhex_vec) tb="$tb tekhex.lo" ;;
|
|
|
|
cisco_core_big_vec) tb="$tb cisco-core.lo" ;;
|
|
|
|
cisco_core_little_vec) tb="$tb cisco-core.lo" ;;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
"") ;;
|
|
|
|
*) AC_MSG_ERROR(*** unknown target vector $vec) ;;
|
|
|
|
esac
|
2001-08-17 05:54:53 +02:00
|
|
|
|
|
|
|
if test ${target_size} = 64; then
|
|
|
|
target64=true
|
|
|
|
fi
|
|
|
|
if test x"${vec}" = x"${defvec}"; then
|
|
|
|
bfd_default_target_size=${target_size}
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
# Target architecture .o files.
|
|
|
|
# A couple of CPUs use shorter file names to avoid problems on DOS
|
|
|
|
# filesystems.
|
|
|
|
ta=`echo $selarchs | sed -e s/bfd_/cpu-/g -e s/_arch/.lo/g -e s/mn10200/m10200/ -e s/mn10300/m10300/`
|
|
|
|
|
|
|
|
# Weed out duplicate .o files.
|
|
|
|
f=""
|
|
|
|
for i in $tb ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*) f="$f $i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
tb="$f"
|
|
|
|
|
|
|
|
f=""
|
|
|
|
for i in $ta ; do
|
|
|
|
case " $f " in
|
|
|
|
*" $i "*) ;;
|
|
|
|
*) f="$f $i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
ta="$f"
|
|
|
|
|
|
|
|
bfd_backends="$tb"
|
|
|
|
bfd_machines="$ta"
|
|
|
|
|
|
|
|
if test x${all_targets} = xtrue ; then
|
|
|
|
bfd_backends="${bfd_backends}"' $(ALL_BACKENDS)'
|
|
|
|
bfd_machines="${bfd_machines}"' $(ALL_MACHINES)'
|
|
|
|
selvecs=
|
|
|
|
havevecs=
|
|
|
|
selarchs=
|
2002-11-05 02:18:56 +01:00
|
|
|
test -n "$assocvecs" &&
|
|
|
|
assocvecs=`echo $assocvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
|
1999-05-03 09:29:11 +02:00
|
|
|
else # all_targets is true
|
|
|
|
# Only set these if they will be nonempty, for the clever echo.
|
|
|
|
havevecs=
|
2002-11-05 02:18:56 +01:00
|
|
|
assocvecs=
|
1999-05-03 09:29:11 +02:00
|
|
|
test -n "$selvecs" &&
|
|
|
|
havevecs=`echo $selvecs | sed -e 's/^/-DHAVE_/' -e 's/ \(.\)/ -DHAVE_\1/g'`
|
|
|
|
test -n "$selvecs" &&
|
|
|
|
selvecs=`echo $selvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
|
|
|
|
test -n "$selarchs" &&
|
|
|
|
selarchs=`echo $selarchs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
|
|
|
|
fi # all_targets is true
|
|
|
|
|
|
|
|
case ${host64}-${target64}-${want64} in
|
|
|
|
*true*)
|
|
|
|
wordsize=64
|
2001-12-05 23:46:21 +01:00
|
|
|
bfd_libs='$(BFD64_LIBS) $(BFD32_LIBS)'
|
1999-05-03 09:29:11 +02:00
|
|
|
all_backends='$(BFD64_BACKENDS) $(BFD32_BACKENDS)'
|
|
|
|
if test -z "$GCC" && test "$BFD_HOST_64BIT_LONG" = "0" && test "$BFD_HOST_64_BIT_DEFINED" = "0"; then
|
|
|
|
AC_MSG_WARN([You have requested a 64 bit BFD configuration, but])
|
|
|
|
AC_MSG_WARN([your compiler may not have a 64 bit integral type])
|
|
|
|
fi
|
2002-01-26 22:55:54 +01:00
|
|
|
if test -n "$GCC" ; then
|
|
|
|
bad_64bit_gcc=no;
|
|
|
|
AC_MSG_CHECKING([for gcc version with buggy 64-bit support])
|
|
|
|
# Add more tests for gcc versions with non-working 64-bit support here.
|
|
|
|
AC_EGREP_CPP([: 2 : 91 : 1 :],[:__GNUC__:__GNUC_MINOR__:__i386__:],
|
|
|
|
bad_64bit_gcc=yes;
|
|
|
|
AC_MSG_RESULT([yes: egcs-1.1.2 on ix86 spotted]),
|
|
|
|
AC_MSG_RESULT(no))
|
|
|
|
if test $bad_64bit_gcc = yes ; then
|
|
|
|
AC_ERROR([A newer version of gcc is needed for the requested 64-bit BFD configuration])
|
|
|
|
fi
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
;;
|
|
|
|
false-false-false)
|
|
|
|
wordsize=32
|
2001-12-05 23:46:21 +01:00
|
|
|
bfd_libs='$(BFD32_LIBS)'
|
1999-05-03 09:29:11 +02:00
|
|
|
all_backends='$(BFD32_BACKENDS)'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AC_SUBST(wordsize)
|
2001-12-05 23:46:21 +01:00
|
|
|
AC_SUBST(bfd_libs)
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_SUBST(all_backends)
|
|
|
|
AC_SUBST(bfd_backends)
|
|
|
|
AC_SUBST(bfd_machines)
|
2001-08-17 05:54:53 +02:00
|
|
|
AC_SUBST(bfd_default_target_size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
tdefaults=""
|
|
|
|
test -n "${defvec}" && tdefaults="${tdefaults} -DDEFAULT_VECTOR=${defvec}"
|
|
|
|
test -n "${selvecs}" && tdefaults="${tdefaults} -DSELECT_VECS='${selvecs}'"
|
2002-11-05 02:18:56 +01:00
|
|
|
test -n "${assocvecs}" && tdefaults="${tdefaults} -DASSOCIATED_VECS='${assocvecs}'"
|
1999-05-03 09:29:11 +02:00
|
|
|
test -n "${selarchs}" && tdefaults="${tdefaults} -DSELECT_ARCHITECTURES='${selarchs}'"
|
|
|
|
test -n "${havevecs}" && tdefaults="${tdefaults} ${havevecs}"
|
|
|
|
AC_SUBST(tdefaults)
|
|
|
|
|
|
|
|
dnl AC_CHECK_HEADERS(sys/mman.h)
|
|
|
|
AC_FUNC_MMAP
|
|
|
|
AC_CHECK_FUNCS(madvise mprotect)
|
|
|
|
case ${want_mmap}+${ac_cv_func_mmap_fixed_mapped} in
|
|
|
|
true+yes ) AC_DEFINE(USE_MMAP, 1, [Use mmap if it's available?]) ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
rm -f doc/config.status
|
2002-10-14 14:06:04 +02:00
|
|
|
AC_OUTPUT(Makefile doc/Makefile bfd-in3.h:bfd-in2.h bfdver.h:version.h po/Makefile.in:po/Make-in,
|
2001-03-23 19:05:30 +01:00
|
|
|
[sed -e '/SRC-POTFILES =/r po/SRC-POTFILES' -e '/BLD-POTFILES =/r po/BLD-POTFILES' po/Makefile.in > po/Makefile])
|
|
|
|
|