>From 82a5aed44299db11cee3f97731a906e280cfb114 Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Sat, 13 Jun 2020 01:36:52 +0200 Subject: [PATCH 1/6] Let us know unknown number being complained about This will let us discover new sections emitted by the compiler so we can add support for them. --- src/unexmacosx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unexmacosx.c b/src/unexmacosx.c index 59cbe3c..844fc87 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c @@ -628,7 +628,7 @@ print_load_command_name (int lc) break; #endif default: - printf ("unknown "); + printf ("unknown (0x%x) ", lc); } } -- 2.25.2