From d73748815014b8b4bbbd7fe7fb8b50b8a75aecfc Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 19 Jun 2018 09:31:32 +0530 Subject: dependencies: Don't assume self.compiler is a C compiler All dependencies were using find_library, has_header, get_define, etc on self.compiler assuming that it's a compiler that outputs and consumes C-like libraries. This is not true for D (and in the future, for Rust) since although they can consume C libraries, they do not use the C ecosystem. For such purposes, we now have self.clib_compiler. Nothing uses self.compiler anymore as a result, and it has been removed. --- mesonbuild/modules/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules/python.py') diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index b30a1e6..db9d39d 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -125,7 +125,7 @@ class PythonDependency(ExternalDependency): libname += self.variables['ABIFLAGS'] libdirs = [] - largs = self.compiler.find_library(libname, environment, libdirs) + largs = self.clib_compiler.find_library(libname, environment, libdirs) self.is_found = largs is not None -- cgit v1.1