+ /* Mark that we need support for absolute symbols in the dynamic loader. */
+ if (htab != NULL && htab->use_absolute_zero)
+ i_ehdrp->e_ident[EI_ABIVERSION] = MIPS_LIBC_ABI_ABSOLUTE;
+
_bfd_elf_post_process_headers (abfd, link_info);
}
and then `htab->use_absolute_zero' will be TRUE iff a GOT relocation has
been calculated to actually refer to a specially-created absolute symbol
used to address the issue covered by binutils PR ld/21375.
The flag will be FALSE if code has been relaxed to avoid referring the
GOT (by using immediate zero instead), in which case no absolute symbol
will have been specially created.
Does this explanation clear your concern?