From 199c5728ea0e2d7825e308c0c13469107c163b01 Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 24 Jan 2023 23:16:14 +0000 Subject: [PATCH] permit -execute-only on ppc64 (not default) --- gnu/llvm/lld/ELF/Driver.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/llvm/lld/ELF/Driver.cpp b/gnu/llvm/lld/ELF/Driver.cpp index 45c2d37d15f..b718f47358b 100644 --- a/gnu/llvm/lld/ELF/Driver.cpp +++ b/gnu/llvm/lld/ELF/Driver.cpp @@ -364,6 +364,7 @@ static void checkOptions() { case EM_MIPS: case EM_SPARCV9: case EM_X86_64: + case EM_PPC64: break; default: error("-execute-only is not supported on this target"); -- 2.20.1