diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/bfdlink.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 8dfa46f..41e67bc 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +2003-05-30 Ulrich Drepper <drepper@redhat.com> + Jakub Jelinek <jakub@redhat.com> + + * bfdlink.h (struct bfd_link_info): Add pie and executable + bits. + 2003-05-21 Nick Clifton <nickc@redhat.com> * bfdlink.h (struct bfd_link_hash_table): Fix typo in comment. diff --git a/include/bfdlink.h b/include/bfdlink.h index 89d916e..61fcf96 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -291,6 +291,12 @@ struct bfd_link_info /* TRUE if relaxation is being finalized. */ unsigned int relax_finalizing: 1; + /* TRUE if generating a position independent executable. */ + unsigned int pie: 1; + + /* TRUE if generating an executable, position independent or not. */ + unsigned int executable : 1; + /* Which symbols to strip. */ enum bfd_link_strip strip; |