This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Why does slurp_ia64_unwind_table complain unwind symbol type?


slurp_ia64_unwind_table complains about unwind symbol type generated
by icc:

readelf: Warning: Skipping unexpected symbol type 2
readelf: Warning: Skipping unexpected symbol type 2
readelf: Warning: Skipping unexpected symbol type 1
readelf: Warning: Skipping unexpected symbol type 2
readelf: Warning: Skipping unexpected symbol type 2
readelf: Warning: Skipping unexpected symbol type 1

The code is

              if (ELF64_ST_TYPE (sym->st_info) != STT_SECTION)
                {
                  warn (_("Skipping unexpected symbol type %u\n"),
                        ELF64_ST_TYPE (sym->st_info));
                  continue;
                }

Why aren't STT_OBJECT and STT_FUNC allowed?


H.J.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]