From 62c975659fe4a6ce5d56c665607d4f52ca31deda Mon Sep 17 00:00:00 2001 From: Norbert Nemec Date: Fri, 5 Jul 2019 17:59:18 +0200 Subject: diagnostics for missing DLLs on Windows in meson_exe.py --- mesonbuild/scripts/meson_exe.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mesonbuild/scripts/meson_exe.py b/mesonbuild/scripts/meson_exe.py index 85dfe99..991fa3f 100644 --- a/mesonbuild/scripts/meson_exe.py +++ b/mesonbuild/scripts/meson_exe.py @@ -78,6 +78,11 @@ def run_exe(exe): stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = p.communicate() + + if p.returncode == 3221225781: + # magic errorcode on Windows indicating a common problem that is otherwise hard to diagnose + raise FileNotFoundError('Missing DLLs on calling {!r}'.format(exe.name)) + if exe.capture and p.returncode == 0: with open(exe.capture, 'wb') as output: output.write(stdout) -- cgit v1.1