[lld] [llvm] [lld][AArch64][Build Attributes] Add support for AArch64 Build Attributes (PR #147970)
Mark Murray via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 15 06:39:53 PDT 2025
================
@@ -552,8 +591,23 @@ template <class ELFT> void ObjFile<ELFT>::parse(bool ignoreComdats) {
StringRef shstrtab = CHECK2(obj.getSectionStringTable(objSections), this);
uint64_t size = objSections.size();
sections.resize(size);
+
+ AArch64BuildAttrSubsections aarch64BAsubSections;
+ bool hasAArch64BuildAttributes = false;
+
for (size_t i = 0; i != size; ++i) {
const Elf_Shdr &sec = objSections[i];
+ // Read GNU property section into a per-InputFile structure that will be
----------------
MarkMurrayARM wrote:
Done!
https://github.com/llvm/llvm-project/pull/147970
More information about the llvm-commits
mailing list