[lld] [LLD][ELF] Add `-z execute-only-report` that checks PURECODE section flags (PR #128883)
Peter Smith via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 10:22:51 PST 2025
================
@@ -2177,6 +2179,38 @@ template <class ELFT> void Writer<ELFT>::checkExecuteOnly() {
"data and code";
}
+// Check which input sections of RX output sections don't have the
+// SHF_AARCH64_PURECODE or SHF_ARM_PURECODE flag set.
+template <class ELFT> void Writer<ELFT>::checkExecuteOnlyReport() {
+ if ((ctx.arg.emachine != EM_AARCH64 && ctx.arg.emachine != EM_ARM) ||
----------------
smithp35 wrote:
The errAlways message in the driver should mean that the emachine check is always true.
https://github.com/llvm/llvm-project/pull/128883
More information about the llvm-commits
mailing list