From: deraadt Date: Sat, 14 Jan 2023 16:15:43 +0000 (+0000) Subject: Allow people to try --execute-only on amd64 and sparc64. the default is X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b8052447f4f09171bd5ab4fd82cc8bec90e7f5aa;p=openbsd Allow people to try --execute-only on amd64 and sparc64. the default is changed. --- diff --git a/gnu/llvm/lld/ELF/Driver.cpp b/gnu/llvm/lld/ELF/Driver.cpp index aaad7010b01..958fe0c2671 100644 --- a/gnu/llvm/lld/ELF/Driver.cpp +++ b/gnu/llvm/lld/ELF/Driver.cpp @@ -362,6 +362,8 @@ static void checkOptions() { case EM_AARCH64: case EM_RISCV: case EM_MIPS: + case EM_SPARCV9: + case EM_X86_64: break; default: error("-execute-only is not supported on this target");