From 9e8566a27710cb46603fafd69edcecbcf35a9dde Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 23 Jul 2018 16:50:10 +0530 Subject: Print a useful error when a compiler is not found in the cross file --- mesonbuild/environment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 7f5aae8d6..be92bfd0f 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -467,6 +467,8 @@ This is probably wrong, it should always point to the native compiler.''' % evar C, C++, ObjC, ObjC++, Fortran, CS so consolidate it here. ''' if self.is_cross_build() and want_cross: + if lang not in self.cross_info.config['binaries']: + raise EnvironmentException('{!r} compiler binary not defined in cross file'.format(lang)) compilers = mesonlib.stringlistify(self.cross_info.config['binaries'][lang]) # Ensure ccache exists and remove it if it doesn't if compilers[0] == 'ccache': -- cgit v1.2.3