From 93436cb0974cc6f6b38022951d17c901095fa8d8 Mon Sep 17 00:00:00 2001 From: Marvin Friedrich Date: Sun, 3 Nov 2024 01:23:03 +0100 Subject: [PATCH] rtld: Ignore DT_BIND_NOW for ld.so --- options/rtld/generic/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/options/rtld/generic/main.cpp b/options/rtld/generic/main.cpp index b1da1f60d5..de7995b924 100644 --- a/options/rtld/generic/main.cpp +++ b/options/rtld/generic/main.cpp @@ -345,6 +345,7 @@ extern "C" void *interpreterMain(uintptr_t *entry_stack) { case DT_RELRSZ: case DT_RELRENT: case DT_PLTGOT: + case DT_BIND_NOW: continue; case DT_FLAGS: { if((ent->d_un.d_val & ~supportedDtFlags) == 0) {