This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: New flag --keep-section <section_name> to prevent certain sections from being linker garbage collected.
Sriraman Tallam <tmsriram@google.com> writes:
> It comes from libpthread.a when linking statically. For GNU ld, this
> requirement can be placed in the linker script. For gold, I could hard
> code the name in "is_section_name_included" function. Do you prefer
> that? Right now, to include symbols that are discarded by gc, we can
> get away by using -u <symbol>. However, for local symbols this is a
> problem which is the case with .rodata.nptl_version.
If the .rodata.nptl_version section should not be removed by the garbage
collector, then I think it would be fine to add .rodata.nptl_version to
is_section_name_included with an appropriate comment.
Ian