2004-11-24 H.J. Lu <hongjiu.lu@intel.com>

PR 574:
	* elfcode.h (elf_slurp_symbol_table): Handle STT_TLS.
This commit is contained in:
H.J. Lu 2004-11-25 02:14:10 +00:00
parent 47cc2cf519
commit 0be9069d28
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-11-24 H.J. Lu <hongjiu.lu@intel.com>
PR 574:
* elfcode.h (elf_slurp_symbol_table): Handle STT_TLS.
2004-11-24 Paul Brook <paul@codesourcery.com>
* elf.c (assign_section_numbers): Number SHT_GROUP sections first.

View File

@ -1158,6 +1158,9 @@ elf_slurp_symbol_table (bfd *abfd, asymbol **symptrs, bfd_boolean dynamic)
case STT_OBJECT:
sym->symbol.flags |= BSF_OBJECT;
break;
case STT_TLS:
sym->symbol.flags |= BSF_THREAD_LOCAL;
break;
}
if (dynamic)