diff options
author | Tristan Gingold <gingold@adacore.com> | 2010-05-14 07:18:39 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2010-05-14 07:18:39 +0000 |
commit | 7256a1142aec68123aa0e9429802502c4b7c07ea (patch) | |
tree | 0f3c7c2f1f40a573f45b74c2b56c0f1dd7c009c4 /bfd/Makefile.in | |
parent | 7a2988756d80f5af68b3d3ccb6302b2d5e8dce7e (diff) | |
download | gdb-7256a1142aec68123aa0e9429802502c4b7c07ea.zip gdb-7256a1142aec68123aa0e9429802502c4b7c07ea.tar.gz gdb-7256a1142aec68123aa0e9429802502c4b7c07ea.tar.bz2 |
2010-05-14 Tristan Gingold <gingold@adacore.com>
* vms-lib.c (_bfd_vms_lib_ia64_archive_p): New function.
* libbfd-in.h (_bfd_vms_lib_ia64_archive_p): Add prototype.
* libbfd.h: Regenerate.
* configure.in (havevecs): Define HAVE_all_vecs when
--enable-targets=all is set. Use AC_SUBST on it.
(tdefaults): Do not add havevecs.
(bfd_elf64_ia64_vms_vec): Add vms-lib.lo and vms-misc.lo
* configure: Regenerate.
* Makefile.am (HAVEVECS): New variable.
(INCLUDES): Add HAVEVECS.
* Makefile.in: Regenerate.
* elfxx-ia64.c (INCLUDE_IA64_VMS): New macro, defined if vms
target is selected. Add #ifdef/#endif around vms specific code.
(bfd_elfNN_archive_p, bfd_elfNN_archive_slurp_armap,
bfd_elfNN_archive_slurp_extended_name_table,
bfd_elfNN_archive_construct_extended_name_table,
bfd_elfNN_archive_truncate_arname,
bfd_elfNN_archive_write_armap,
bfd_elfNN_archive_read_ar_hdr,
bfd_elfNN_archive_write_ar_hdr,
bfd_elfNN_archive_openr_next_archived_file,
bfd_elfNN_archive_get_elt_at_index,
bfd_elfNN_archive_generic_stat_arch_elt,
bfd_elfNN_archive_update_armap_timestamp): Define to use vms archives.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index f78a006..e21c1cd 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -277,6 +277,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ +havevecs = @havevecs@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ @@ -982,7 +983,10 @@ ALL_BACKENDS = @all_backends@ BFD_BACKENDS = @bfd_backends@ BFD_MACHINES = @bfd_machines@ TDEFAULTS = @tdefaults@ -INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) @INCINTL@ +HAVEVECS = @havevecs@ +INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) \ + $(HAVEVECS) @INCINTL@ + # C source files that correspond to .o's. SOURCE_CFILES = \ |