diff options
author | Nick Clifton <nickc@redhat.com> | 2014-04-09 17:12:30 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2014-04-09 17:12:30 +0100 |
commit | edf84efc4eae005d0e543e13cc51a751296e6aad (patch) | |
tree | 5491250c55d989ea2ae3f9e9711b1563ce55e948 /ld/ldmain.c | |
parent | 2eec7d5ba1928301955f4da013072c3e2f69f4a0 (diff) | |
download | gdb-edf84efc4eae005d0e543e13cc51a751296e6aad.zip gdb-edf84efc4eae005d0e543e13cc51a751296e6aad.tar.gz gdb-edf84efc4eae005d0e543e13cc51a751296e6aad.tar.bz2 |
Remove remaining default manifest support.
* Makefile.am (default-manifest.o): Remove rule.
(EMUL_EXTRA_BINARIES): Delete.
(ALL_EMUL_EXTRA_BINARIES): Delete.
(ld_new_DEPENDENCIES): Remove EMUL_EXTRA_BINARIES.
(install-data-local): Remove EMUL_EXTRA_BINARIES.
* Makefile.in: Regenerate.
* configure.in (all_emul_extra_binaries): Delete.
(EMUL_EXTRA_BINARIES): Remove.
* configure: Regenerate.
* configure.tgt (target_extra_binaries): Delete.
* emultempl/default-manifest.rc: Delete.
* ld.texinfo: Remove discussion of default manifest.
* emulparams/i386pe.sh (DEFAULT_MANIFEST): Delete.
* emulparams/i386pep.sh (DEFAULT_MANIFEST): Delete.
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r-- | ld/ldmain.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c index b132dae..4c7ea68 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -432,7 +432,14 @@ main (int argc, char **argv) output_cref (config.map_file != NULL ? config.map_file : stdout); if (nocrossref_list != NULL) check_nocrossrefs (); +#if 0 + { + struct bfd_link_hash_entry * h; + h = bfd_link_hash_lookup (link_info.hash, "__image_base__", 0,0,1); + fprintf (stderr, "lookup = %p val %lx\n", h, h ? h->u.def.value : 1); + } +#endif lang_finish (); /* Even if we're producing relocatable output, some non-fatal errors should |