diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-04-22 09:06:58 +0200 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-05-15 10:10:49 -0700 |
| commit | 979805fdc104f8ea729115243febfe227e785039 (patch) | |
| tree | 65fd5f51421e575a1d835091a12d77eb68bb951b /mesonbuild/compilers | |
| parent | 8dfecd2ad8d01a8f52db3b5552b1839ce7a1edd7 (diff) | |
| download | meson-979805fdc104f8ea729115243febfe227e785039.tar.gz | |
coredata: remove unused arguments
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'mesonbuild/compilers')
| -rw-r--r-- | mesonbuild/compilers/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py index 53bdd8513..040c42f6c 100644 --- a/mesonbuild/compilers/detect.py +++ b/mesonbuild/compilers/detect.py @@ -107,7 +107,7 @@ def detect_compiler_for(env: 'Environment', lang: str, for_machine: MachineChoic if comp is None: return comp assert comp.for_machine == for_machine - env.coredata.process_compiler_options(lang, comp, env, subproject) + env.coredata.process_compiler_options(lang, comp, subproject) if not skip_sanity_check: comp.sanity_check(env.get_scratch_dir(), env) env.coredata.compilers[comp.for_machine][lang] = comp |
