From 9cf72fd0b2ebf6010e0955e7b658051e97f0add6 Mon Sep 17 00:00:00 2001 From: Anhad Singh Date: Tue, 31 Dec 2024 18:00:45 +1100 Subject: [PATCH] feat(ld.so): add `all` option for LD_DEBUG Signed-off-by: Anhad Singh --- src/ld_so/linker.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ld_so/linker.rs b/src/ld_so/linker.rs index 3292724509..5a2809ee80 100644 --- a/src/ld_so/linker.rs +++ b/src/ld_so/linker.rs @@ -272,6 +272,7 @@ impl Config { "baseaddr" => DebugFlags::BASE_ADDRESS, "search" => DebugFlags::SEARCH, "scopes" => DebugFlags::SCOPES, + "all" => DebugFlags::all(), _ => { eprintln!("[ld.so]: unknown debug flag '{}'", opt); DebugFlags::empty()