diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-07-20 19:51:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-07-20 19:51:18 +0000 |
commit | f9779aad5a94322128a0572b28bb45da7b29acf3 (patch) | |
tree | 84ee7b2eae324f8be1a553323ab834a97874443c /bfd/bfd-in2.h | |
parent | fafc71bab73f4f60d3b3b108817c7cd9aed2f360 (diff) | |
download | gdb-f9779aad5a94322128a0572b28bb45da7b29acf3.zip gdb-f9779aad5a94322128a0572b28bb45da7b29acf3.tar.gz gdb-f9779aad5a94322128a0572b28bb45da7b29acf3.tar.bz2 |
* elfcode.h (NAME(bfd_elf,size_dynamic_sections)): Add rpath
argument. If it is not NULL, use it to set DT_RPATH.
* bfd-in.h (bfd_elf32_size_dynamic_sections): Update prototype.
(bfd_elf64_size_dynamic_sections): Likewise.
* bfd-in2.h: Rebuilt.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index ab889a5..09f5338 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -532,9 +532,9 @@ extern boolean bfd_elf32_record_link_assignment extern boolean bfd_elf64_record_link_assignment PARAMS ((bfd *, struct bfd_link_info *, const char *)); extern boolean bfd_elf32_size_dynamic_sections - PARAMS ((bfd *, struct bfd_link_info *, struct sec **)); + PARAMS ((bfd *, const char *, struct bfd_link_info *, struct sec **)); extern boolean bfd_elf64_size_dynamic_sections - PARAMS ((bfd *, struct bfd_link_info *, struct sec **)); + PARAMS ((bfd *, const char *, struct bfd_link_info *, struct sec **)); extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *)); /* SunOS shared library support routines for the linker. */ @@ -1143,6 +1143,7 @@ enum complain_overflow }; typedef unsigned char bfd_byte; +typedef struct reloc_howto_struct reloc_howto_type; struct reloc_howto_struct { @@ -1236,7 +1237,6 @@ struct reloc_howto_struct boolean pcrel_offset; }; -typedef struct reloc_howto_struct reloc_howto_type; #define HOWTO(C, R,S,B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \ {(unsigned)C,R,S,B, P, BI, O,SF, 0,NAME,INPLACE,MASKSRC,MASKDST,PC} #define HOWTO2(C, R,S,B, P, BI, O, SF, SF1,NAME, INPLACE, MASKSRC, MASKDST, PC) \ |