diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-10-31 11:20:09 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | fc97e4f395e6ad551eb71b97b85df24302bcb7a4 (patch) | |
| tree | bee3aedd2c51b374b79080eaa50d8916eaadc2a0 /mesonbuild/compilers/cuda.py | |
| parent | ae56005bbd8f8c47dfe14d9e540cf52ddf9b0d73 (diff) | |
| download | meson-fc97e4f395e6ad551eb71b97b85df24302bcb7a4.tar.gz | |
compilers: Remove Environment parameter from Compiler.run_sanity_check
Diffstat (limited to 'mesonbuild/compilers/cuda.py')
| -rw-r--r-- | mesonbuild/compilers/cuda.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py index 4bf847c60..68df39bc3 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -580,7 +580,7 @@ class CudaCompiler(Compiler): cmdlist = self.exelist + ['--run', f'"{binary_name}"'] try: - stdo, stde = self.run_sanity_check(env, cmdlist, work_dir) + stdo, stde = self.run_sanity_check(cmdlist, work_dir) except EnvironmentException: raise EnvironmentException(f'Executables created by {self.language} compiler {self.name_string()} are not runnable.') |
