diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-13 09:04:25 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | b8d25da6e22f6d7d1e39f9b9bbc2299fc1ad090a (patch) | |
| tree | 449fdf45e9d8af6f08a801b37be3d80dbf645b49 /mesonbuild/modules | |
| parent | 252faf5be8ffb23b5f335ebf10c7f1c3d3717ec5 (diff) | |
| download | meson-b8d25da6e22f6d7d1e39f9b9bbc2299fc1ad090a.tar.gz | |
compilers: Remove Environment parameter from Compiler.sanitizer_args
Diffstat (limited to 'mesonbuild/modules')
| -rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index d6f56b9fa..0f522c106 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -924,7 +924,7 @@ class GnomeModule(ExtensionModule): if OptionKey('b_sanitize') in compiler.base_options: sanitize = state.environment.coredata.optstore.get_value_for('b_sanitize') assert isinstance(sanitize, list) - cflags += compiler.sanitizer_compile_args(None, state.environment, sanitize) + cflags += compiler.sanitizer_compile_args(None, sanitize) # These must be first in ldflags if 'address' in sanitize: internal_ldflags += ['-lasan'] |
