diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-13 11:32:09 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | b44846c0f287a6fa2205b0b0df2b6c97607b6ada (patch) | |
| tree | 67c638b0b2f33ee563018f840be398f2ef8730b4 /mesonbuild/compilers/cpp.py | |
| parent | 37cbcf98092d17f69e035dced79097e1acf56919 (diff) | |
| download | meson-b44846c0f287a6fa2205b0b0df2b6c97607b6ada.tar.gz | |
compilers: Remove Environment parameter from CLikeCompiler.get_compiler_dirs
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
| -rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index d7cd954d8..198e5b631 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -202,7 +202,7 @@ class _StdCPPLibMixin(CompilerMixinBase): # be passed to a different compiler with a different set of default # search paths, such as when using Clang for C/C++ and gfortran for # fortran. - search_dirs = [f'-L{d}' for d in self.get_compiler_dirs(self.environment, 'libraries')] + search_dirs = [f'-L{d}' for d in self.get_compiler_dirs('libraries')] lib = self.language_stdlib_provider(self.environment) if self.find_library(lib, []) is not None: |
