diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-06 23:47:15 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-07-07 04:33:24 -0700 |
commit | 2093d45a4e1203d868d200628918472877c7ec31 (patch) | |
tree | a7253981585f71f5bd3a0053deff8ed90ad690ee /mesonbuild/interpreter.py | |
parent | 80392225a61a5baa28ef1f45bfc19b4623d2d188 (diff) | |
download | meson-2093d45a4e1203d868d200628918472877c7ec31.zip meson-2093d45a4e1203d868d200628918472877c7ec31.tar.gz meson-2093d45a4e1203d868d200628918472877c7ec31.tar.bz2 |
Print a more usable message when a subproject fails to configure
Instead of just printing the message in the exception, if it's
a MesonException, also print the file and the line number. If it's an
unknown exception, print the entire traceback so that we can pin-point
what the Meson bug causing it is.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 121fdb7..833e982 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -36,6 +36,7 @@ import re, shlex import subprocess from collections import namedtuple from pathlib import PurePath +import traceback import importlib @@ -2960,9 +2961,14 @@ root and issuing %s. # If the subproject execution failed in a non-fatal way, don't raise an # exception; let the caller handle things. except Exception as e: - mlog.log('Couldn\'t use fallback subproject in', - mlog.bold(os.path.join(self.subproject_dir, dirname)), - 'for the dependency', mlog.bold(display_name), '\nReason:', str(e)) + msg = ['Couldn\'t use fallback subproject in', + mlog.bold(os.path.join(self.subproject_dir, dirname)), + 'for the dependency', mlog.bold(display_name), '\nReason:'] + if isinstance(e, mesonlib.MesonException): + msg.append(e.get_msg_with_context()) + else: + msg.append(traceback.format_exc()) + mlog.log(*msg) return None dep = self.get_subproject_dep(name, dirname, varname, kwargs.get('required', True)) if not dep: |