diff options
author | Tom Tromey <tromey@redhat.com> | 2009-07-10 15:27:04 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-07-10 15:27:04 +0000 |
commit | fa8f86ff3b8e5b29e3b217abeaa33a747052c43e (patch) | |
tree | ec0427e8e5220cfd935ef72155f917dac7b6b103 /binutils | |
parent | 33c6a8fcd6414ad15f98e7c826386a56302f1bb6 (diff) | |
download | gdb-fa8f86ff3b8e5b29e3b217abeaa33a747052c43e.zip gdb-fa8f86ff3b8e5b29e3b217abeaa33a747052c43e.tar.gz gdb-fa8f86ff3b8e5b29e3b217abeaa33a747052c43e.tar.bz2 |
bfd
* Makefile.am (dwarf2.lo): Use dwarf2.h, not elf/dwarf2.h.
(elf-eh-frame.lo): Likewise.
(elf32-bfin.lo): Likewise.
(elf32-frv.lo): Likewise.
(elf32-xc16x.lo): Likewise.
* Makefile.in: Rebuild.
* dwarf2.c: Included dwarf.h, not elf/dwarf2.h.
* elf-eh-frame.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-frv.c: Likewise.
* elf32-xc16x.c: Likewise.
binutils
* Makefile.am (dwarf.o): Refer to dwarf2.h, not elf/dwarf2.h.
* Makefile.in: Rebuild.
* dwarf.c: Include dwarf2.h, not elf/dwarf2.h.
gas
* Makefile.am (DEPTC_alpha_ecoff): Refer to dwarf2.h, not
elf/dwarf2.h.
(DEPTC_alpha_elf): Likewise.
(DEPTC_alpha_evax): Likewise.
(DEPTC_arm_elf): Likewise.
(DEPTC_hppa_elf): Likewise.
(DEPTC_i386_aout): Likewise.
(DEPTC_i386_coff): Likewise.
(DEPTC_i386_elf): Likewise.
(DEPTC_m68k_aout): Likewise.
(DEPTC_m68k_coff): Likewise.
(DEPTC_m68k_elf): Likewise.
(DEPTC_mips_coff): Likewise.
(DEPTC_mips_ecoff): Likewise.
(DEPTC_mips_elf): Likewise.
(DEPTC_ppc_coff): Likewise.
(DEPTC_ppc_elf): Likewise.
(DEPTC_s390_elf): Likewise.
(DEPTC_sh_coff): Likewise.
(DEPTC_sh_elf): Likewise.
(DEPTC_sh64_elf): Likewise.
(DEPTC_sparc_aout): Likewise.
(DEPTC_sparc_coff): Likewise.
(DEPTC_sparc_elf): Likewise.
(as.o): Likewise.
(dwarf2dbg.o): Likewise.
(dw2gencfi.o): Likewise.
(ehopt.o): Likewise.
(read.o): Likewise.
* Makefile.in: Rebuild.
* dw2gencfi.h: Include dwarf2.h, not elf/dwarf2.h.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
gdb
* dwarf2-frame.c: Include dwarf2.h, not elf/dwarf2.h.
* dwarf2expr.c: Likewise.
* dwarf2loc.c: Likewise.
* dwarf2read.c: Likewise.
* sh-tdep.c: Likewise.
* xtensa-tdep.c: Likewise.
include
* dwarf2.h: New file, moved from elf/.
include/elf
* dwarf2.h: Move to `..'.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/Makefile.am | 2 | ||||
-rw-r--r-- | binutils/Makefile.in | 2 | ||||
-rw-r--r-- | binutils/dwarf.c | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 36e8dd9..cca5031 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2009-07-10 Tom Tromey <tromey@redhat.com> + + * Makefile.am (dwarf.o): Refer to dwarf2.h, not elf/dwarf2.h. + * Makefile.in: Rebuild. + * dwarf.c: Include dwarf2.h, not elf/dwarf2.h. + 2009-07-06 Tristan Gingold <gingold@adacore.com> * objdump.c (dump_dwarf_section): Handle .eh_frame like other dwarf diff --git a/binutils/Makefile.am b/binutils/Makefile.am index d3dd46e..8b48f6f 100644 --- a/binutils/Makefile.am +++ b/binutils/Makefile.am @@ -623,7 +623,7 @@ dwarf.o: \ $(INCDIR)/ansidecl.h \ $(INCDIR)/binary-io.h \ $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/dwarf2.h \ $(INCDIR)/fopen-same.h \ $(INCDIR)/libiberty.h \ $(INCDIR)/symcat.h \ diff --git a/binutils/Makefile.in b/binutils/Makefile.in index d001448..62e821f 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -1391,7 +1391,7 @@ dwarf.o: \ $(INCDIR)/ansidecl.h \ $(INCDIR)/binary-io.h \ $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/dwarf2.h \ $(INCDIR)/fopen-same.h \ $(INCDIR)/libiberty.h \ $(INCDIR)/symcat.h \ diff --git a/binutils/dwarf.c b/binutils/dwarf.c index dc0fedc..78f9884 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -24,7 +24,7 @@ #include "bfd.h" #include "bucomm.h" #include "elf/common.h" -#include "elf/dwarf2.h" +#include "dwarf2.h" #include "dwarf.h" static int have_frame_base; |