diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/bfdlink.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9dee8dd..92c170e 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2005-03-16 H.J. Lu <hongjiu.lu@intel.com> + + * bfdlink.h (bfd_link_info): Add gc_sections. + 2005-03-12 Zack Weinberg <zack@codesourcery.com> * opcode/arm.h: Adjust comments for ARM_EXT_V4T and ARM_EXT_V5T. diff --git a/include/bfdlink.h b/include/bfdlink.h index 9d93154..ad32906 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -324,6 +324,9 @@ struct bfd_link_info /* TRUE if we should warn when adding a DT_TEXTREL to a shared object. */ unsigned int warn_shared_textrel: 1; + /* TRUE if unreferenced sections should be removed. */ + unsigned int gc_sections: 1; + /* What to do with unresolved symbols in an object file. When producing executables the default is GENERATE_ERROR. When producing shared libraries the default is IGNORE. The |