From beacaa966be202228a7905474013dfb199f36e14 Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Mon, 10 Mar 2014 13:36:40 -0700 Subject: [PATCH] Add explicit instantiations for Sized_symbol::init_output_data. 2014-03-10 Sasa Stankovic gold/ * symtab.cc (Sized_symbol<32>::init_output_data): Instantiate the template. (Sized_symbol<64>::init_output_data): Likewise. --- gold/ChangeLog | 6 ++++++ gold/symtab.cc | 26 ++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/gold/ChangeLog b/gold/ChangeLog index 21e23d3..1e21236 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,5 +1,11 @@ 2014-03-10 Sasa Stankovic + * symtab.cc (Sized_symbol<32>::init_output_data): + Instantiate the template. + (Sized_symbol<64>::init_output_data): Likewise. + +2014-03-10 Sasa Stankovic + * symtab.cc (Symbol_table::sized_write_globals): Allow a target to adjust dynamic symbol value. * target.h (Target::adjust_dyn_symbol): New function. diff --git a/gold/symtab.cc b/gold/symtab.cc index 2a00d56..1a69f5b 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -3644,6 +3644,32 @@ Symbol_table::define_with_copy_reloc<64>( elfcpp::Elf_types<64>::Elf_Addr value); #endif +#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG) +template +void +Sized_symbol<32>::init_output_data(const char* name, const char* version, + Output_data* od, Value_type value, + Size_type symsize, elfcpp::STT type, + elfcpp::STB binding, + elfcpp::STV visibility, + unsigned char nonvis, + bool offset_is_from_end, + bool is_predefined); +#endif + +#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG) +template +void +Sized_symbol<64>::init_output_data(const char* name, const char* version, + Output_data* od, Value_type value, + Size_type symsize, elfcpp::STT type, + elfcpp::STB binding, + elfcpp::STV visibility, + unsigned char nonvis, + bool offset_is_from_end, + bool is_predefined); +#endif + #ifdef HAVE_TARGET_32_LITTLE template void -- 2.7.4