tools: include error message to ease debugging

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2026-03-15 20:13:49 +02:00 committed by Bruno
parent 4828b2d3f7
commit 2185168536

View file

@ -102,6 +102,7 @@ for df in def_files:
status, nm = subprocess.getstatusoutput (command + libname)
if status != 0:
print("trouble reading {} - has it been compiled?".format(libname))
print(nm)
have_errors = -1
continue