From 73e42917f9b0812b0e7b49a675820a7ddc8d43a4 Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Fri, 10 Sep 2021 09:22:46 +0800 Subject: [PATCH] Utilities: Show dynamic ELF info with "show all" option --- Userland/Utilities/readelf.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Utilities/readelf.cpp b/Userland/Utilities/readelf.cpp index 653fe7ee95d..996843ca467 100644 --- a/Userland/Utilities/readelf.cpp +++ b/Userland/Utilities/readelf.cpp @@ -412,6 +412,8 @@ int main(int argc, char** argv) display_elf_header = true; display_program_headers = true; display_section_headers = true; + display_dynamic_symbol_table = true; + display_dynamic_section = true; display_core_notes = true; display_relocations = true; display_unwind_info = true;