qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix objdump output parser in "nsis.py"
@ 2025-04-12 18:08 Arthur Sengileyev
  2025-04-12 18:19 ` [PATCH for-10.0] " Stefan Weil
  0 siblings, 1 reply; 3+ messages in thread
From: Arthur Sengileyev @ 2025-04-12 18:08 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: Cleber Rosa, John Snow, Stefan Weil, Arthur Sengileyev

In msys2 distribution objdump from gcc is using single tab character
prefix, but objdump from clang is using 4 white space characters instead.
The script will not identify any dll dependencies for a QEMU build
generated with clang. This in turn will fail the build, because there
will be no files inside dlldir and no setup file will be created.
Instead of checking for whitespace in prefix use lstrip to accommodate
for differences in outputs.

Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
---
 scripts/nsis.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/nsis.py b/scripts/nsis.py
index af4e064819..8f469634eb 100644
--- a/scripts/nsis.py
+++ b/scripts/nsis.py
@@ -23,7 +23,7 @@ def find_deps(exe_or_dll, search_path, analyzed_deps):
     output = subprocess.check_output(["objdump", "-p", exe_or_dll], text=True)
     output = output.split("\n")
     for line in output:
-        if not line.startswith("\tDLL Name: "):
+        if not line.lstrip().startswith("DLL Name: "):
             continue
 
         dep = line.split("DLL Name: ")[1].strip()
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-14 14:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-12 18:08 [PATCH] Fix objdump output parser in "nsis.py" Arthur Sengileyev
2025-04-12 18:19 ` [PATCH for-10.0] " Stefan Weil
2025-04-14 14:43   ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).