diff options
author | Nick Clifton <nickc@redhat.com> | 2006-08-02 16:25:14 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-08-02 16:25:14 +0000 |
commit | 9d7cbccda0d0b223261e33efb609a7a43401ec5e (patch) | |
tree | 89c15bea23a6a33149b4057f5f7add8d6910cdb6 /bfd/configure | |
parent | c973bc5cd4b6024ab430a41cae5b75c2c54fd55e (diff) | |
download | gdb-9d7cbccda0d0b223261e33efb609a7a43401ec5e.zip gdb-9d7cbccda0d0b223261e33efb609a7a43401ec5e.tar.gz gdb-9d7cbccda0d0b223261e33efb609a7a43401ec5e.tar.bz2 |
PR binutils/2983
* bfd/elf64-x86-64.c: Add FreeBSD support.
(elf64_x86_64_fbsd_post_process_headers): New function.
* bfd/targets.c (_bfd_target_vector): Add bfd_elf64_x86_64_freebsd_vec.
* bfd/config.bfd (x64_64-*-freebsd*): Add bfd_elf64_x86_64_freebsd_vec to the targ_selvecs.
* bfd/configure.in: Add entry for bfd_elf64_x86_64_freebsd_vec.
* bfd/configure: Regenerate.
* gas/config/tc-i386.c (md_parse_option): Treat any target starting with elf64_x86_64 as a viable target for the -64 switch.
(i386_target_format): For 64-bit ELF flavoured output use ELF_TARGET_FORMAT64.
* gas/config/tc-i386.h (ELF_TARGET_FORMAT64): Define.
* ld/emulparams/elf_x86_64_fbsd.sh (OUTPUT_FORMAT): Define as elf64-x86-64-freebsd.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bfd/configure b/bfd/configure index fa9307d..86b9492 100755 --- a/bfd/configure +++ b/bfd/configure @@ -5282,8 +5282,9 @@ INCINTL= XGETTEXT= GMSGFMT= POSUB= -if test -f ../intl/config.intl; then - . ../intl/config.intl + +if test -f ../intl/config.intl; then + . ../intl/config.intl fi echo "$as_me:$LINENO: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 @@ -10917,6 +10918,7 @@ do bfd_elf64_sparc_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;; bfd_elf64_tradbigmips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;; bfd_elf64_tradlittlemips_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf ecofflink.lo"; target_size=64 ;; + bfd_elf64_x86_64_freebsd_vec) tb="$tb elf64-x86-64.lo elf64.lo $elf"; target_size=64 ;; bfd_elf64_x86_64_vec) tb="$tb elf64-x86-64.lo elf64.lo $elf"; target_size=64 ;; bfd_mmo_vec) tb="$tb mmo.lo" target_size=64 ;; bfd_powerpc_pe_vec) tb="$tb pe-ppc.lo peigen.lo cofflink.lo" ;; |