diff options
author | Tom Rix <trix@redhat.com> | 2002-02-19 05:01:40 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2002-02-19 05:01:40 +0000 |
commit | 69f284c74ed40f90e9358f9df122d46194ed91b3 (patch) | |
tree | f3a912d0dbea4323bc5fd390508946abe6a06d59 /bfd/libxcoff.h | |
parent | 55c0a857d61b0e4ed4c1ee7e4afd5c1771a45859 (diff) | |
download | gdb-69f284c74ed40f90e9358f9df122d46194ed91b3.zip gdb-69f284c74ed40f90e9358f9df122d46194ed91b3.tar.gz gdb-69f284c74ed40f90e9358f9df122d46194ed91b3.tar.bz2 |
Add support for -brtl, run time linking, to AIX ld.
Diffstat (limited to 'bfd/libxcoff.h')
-rw-r--r-- | bfd/libxcoff.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bfd/libxcoff.h b/bfd/libxcoff.h index ee72370..20c3c4a 100644 --- a/bfd/libxcoff.h +++ b/bfd/libxcoff.h @@ -95,7 +95,8 @@ struct xcoff_backend_data_rec /* rtinit */ unsigned int _xcoff_rtinit_size; - boolean (*_xcoff_generate_rtinit)(bfd *, const char *, const char *); + boolean (*_xcoff_generate_rtinit)(bfd *, const char *, const char *, + boolean); }; /* Look up an entry in an XCOFF link hash table. */ @@ -192,6 +193,6 @@ struct xcoff_backend_data_rec #define bfd_xcoff_is_xcoff32(a) (0x01DF == (bfd_xcoff_magic_number(a))) #define bfd_xcoff_rtinit_size(a) ((xcoff_backend(a)->_xcoff_rtinit_size)) -#define bfd_xcoff_generate_rtinit(a, b, c) ((xcoff_backend(a)->_xcoff_generate_rtinit ((a), (b), (c)))) +#define bfd_xcoff_generate_rtinit(a, b, c, d) ((xcoff_backend(a)->_xcoff_generate_rtinit ((a), (b), (c), (d)))) #endif /* LIBXCOFF_H */ |