[lld] [lld][AArch64][ELF][PAC] Support `.relr.auth.dyn` section (PR #87635)
Daniil Kovalev via llvm-commits
llvm-commits at lists.llvm.org
Tue May 14 12:42:17 PDT 2024
================
@@ -544,7 +544,9 @@ class RelocationBaseSection : public SyntheticSection {
static bool classof(const SectionBase *d) {
return SyntheticSection::classof(d) &&
(d->type == llvm::ELF::SHT_RELA || d->type == llvm::ELF::SHT_REL ||
- d->type == llvm::ELF::SHT_RELR);
+ d->type == llvm::ELF::SHT_RELR ||
+ (config->emachine == llvm::ELF::EM_AARCH64 &&
----------------
kovdan01 wrote:
Fixed, thanks, see e68efcf46ebf0abdeec9f1fd5ed6a14e51e07e42
https://github.com/llvm/llvm-project/pull/87635
More information about the llvm-commits
mailing list