diff options
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; |