diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-08-24 21:49:55 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-08-24 21:49:55 +0000 |
commit | 3d6b762c68c6e19bdf387c0f1db7773fd22aab9a (patch) | |
tree | aaed967f4fb27d39d98495f58b5aa56c5d102381 /gas/Makefile.am | |
parent | 534a31f6908dfec77b02051240630059e3ad7520 (diff) | |
download | gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.zip gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.tar.gz gdb-3d6b762c68c6e19bdf387c0f1db7773fd22aab9a.tar.bz2 |
2007-08-24 Joseph Myers <joseph@codesourcery.com>
Paul Brook <paul@codesourcery.com>
* remap.c: New.
* as.h (remap_debug_filename, add_debug_prefix_map): Declare.
* as.c (show_usage): Document --debug-prefix-map option.
(parse_args): Handle --debug-prefix-map.
* dwarf2dbg.c (out_file_list, out_debug_info): Remap debug paths.
* stabs.c (stabs_generate_asm_file): Remap debug paths.
* Makefile.am (GAS_CFILES): Add remap.c
(GENERIC_OBJS): Add remap.o.
Regenerate dependencies.
* Makefile.in: Regenerate.
* doc/as.texinfo (--debug-prefix-map): Document.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r-- | gas/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am index 6704236..f2a3611 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -195,6 +195,7 @@ GAS_CFILES = \ messages.c \ output-file.c \ read.c \ + remap.c \ sb.c \ stabs.c \ subsegs.c \ @@ -439,6 +440,7 @@ GENERIC_OBJS = \ messages.o \ output-file.o \ read.o \ + remap.o \ subsegs.o \ symbols.o \ write.o \ @@ -1490,6 +1492,11 @@ DEPOBJ_bfin_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ $(INCDIR)/bfdlink.h $(srcdir)/config/tc-bfin.h dwarf2dbg.h \ $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h +DEPOBJ_cr16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(srcdir)/config/tc-cr16.h dwarf2dbg.h \ + $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ + $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h DEPOBJ_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \ $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ $(INCDIR)/obstack.h @@ -2158,6 +2165,7 @@ messages.o: messages.c output-file.o: output-file.c output-file.h read.o: read.c $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ sb.h macro.h ecoff.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h +remap.o: remap.c sb.o: sb.c sb.h stabs.o: stabs.c $(INCDIR)/obstack.h subsegs.h ecoff.h \ $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def |