diff options
Diffstat (limited to 'gold/output.cc')
-rw-r--r-- | gold/output.cc | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/gold/output.cc b/gold/output.cc index f6a6f1d..0f45ca1 100644 --- a/gold/output.cc +++ b/gold/output.cc @@ -3493,6 +3493,86 @@ Output_section::add_input_section<64, true>( #ifdef HAVE_TARGET_32_LITTLE template +class Output_reloc<elfcpp::SHT_REL, false, 32, false>; +#endif + +#ifdef HAVE_TARGET_32_BIG +template +class Output_reloc<elfcpp::SHT_REL, false, 32, true>; +#endif + +#ifdef HAVE_TARGET_64_LITTLE +template +class Output_reloc<elfcpp::SHT_REL, false, 64, false>; +#endif + +#ifdef HAVE_TARGET_64_BIG +template +class Output_reloc<elfcpp::SHT_REL, false, 64, true>; +#endif + +#ifdef HAVE_TARGET_32_LITTLE +template +class Output_reloc<elfcpp::SHT_REL, true, 32, false>; +#endif + +#ifdef HAVE_TARGET_32_BIG +template +class Output_reloc<elfcpp::SHT_REL, true, 32, true>; +#endif + +#ifdef HAVE_TARGET_64_LITTLE +template +class Output_reloc<elfcpp::SHT_REL, true, 64, false>; +#endif + +#ifdef HAVE_TARGET_64_BIG +template +class Output_reloc<elfcpp::SHT_REL, true, 64, true>; +#endif + +#ifdef HAVE_TARGET_32_LITTLE +template +class Output_reloc<elfcpp::SHT_RELA, false, 32, false>; +#endif + +#ifdef HAVE_TARGET_32_BIG +template +class Output_reloc<elfcpp::SHT_RELA, false, 32, true>; +#endif + +#ifdef HAVE_TARGET_64_LITTLE +template +class Output_reloc<elfcpp::SHT_RELA, false, 64, false>; +#endif + +#ifdef HAVE_TARGET_64_BIG +template +class Output_reloc<elfcpp::SHT_RELA, false, 64, true>; +#endif + +#ifdef HAVE_TARGET_32_LITTLE +template +class Output_reloc<elfcpp::SHT_RELA, true, 32, false>; +#endif + +#ifdef HAVE_TARGET_32_BIG +template +class Output_reloc<elfcpp::SHT_RELA, true, 32, true>; +#endif + +#ifdef HAVE_TARGET_64_LITTLE +template +class Output_reloc<elfcpp::SHT_RELA, true, 64, false>; +#endif + +#ifdef HAVE_TARGET_64_BIG +template +class Output_reloc<elfcpp::SHT_RELA, true, 64, true>; +#endif + +#ifdef HAVE_TARGET_32_LITTLE +template class Output_data_reloc<elfcpp::SHT_REL, false, 32, false>; #endif |