[lld] [LLD][ELF][AArch64] Discard .ARM.attributes sections (PR #125838)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 04:07:46 PST 2025
================
@@ -0,0 +1,26 @@
+// REQUIRES: aarch64
+// RUN: llvm-mc -triple=aarch64 %s -filetype=obj -o %t.o
+// RUN: ld.lld %t.o --shared -o %t.so
+// RUN: llvm-readelf --sections %t.so | FileCheck %s
+// RUN: ld.lld %t.o -o %t
+// RUN: llvm-readelf --sections %t | FileCheck %s
+// RUN: ld.lld -r %t.o -o %t2.o
+// RUN: llvm-readelf --sections %t2.o | FileCheck %s
+
+/// File has a Build attributes section. This should not appear in
+/// ET_EXEC or ET_SHARED files as there is no requirement for it to
+/// do so. FIXME, the ld -r (relocatable link) should output a single
+/// merged build attributes section. WHen full support is added in
----------------
sivan-shani wrote:
typo 'When'
https://github.com/llvm/llvm-project/pull/125838
More information about the llvm-commits
mailing list