From 794a4fcf20c0d8c5b4ecf6a72f4852070e7e4405 Mon Sep 17 00:00:00 2001 From: Andrew Rogers Date: Wed, 30 Oct 2024 16:01:20 -0700 Subject: [PATCH] allow ELF link audit version <= LAV_CURRENT --- Sources/Target/POSIX/ELFProcess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Target/POSIX/ELFProcess.cpp b/Sources/Target/POSIX/ELFProcess.cpp index 28752443..ebcc8a60 100644 --- a/Sources/Target/POSIX/ELFProcess.cpp +++ b/Sources/Target/POSIX/ELFProcess.cpp @@ -191,7 +191,7 @@ EnumerateLinkMap(ELFProcess *process, Address addressToDPtr, // Android and FreeBSD don't have a definition for LAV_CURRENT so we skip this // check. #if defined(LAV_CURRENT) - if (debug.version != LAV_CURRENT) { + if (debug.version > LAV_CURRENT) { return kErrorUnsupported; } #endif