diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-12 10:16:49 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | a5c703c9e068366a6331b23227529fabd35e42cd (patch) | |
| tree | 005ed7b0d79e1eab4ae08c36bbeb21e14320b555 /mesonbuild/compilers/mixins/microchip.py | |
| parent | df0139510791507181051d865472833f5fc2b442 (diff) | |
| download | meson-a5c703c9e068366a6331b23227529fabd35e42cd.tar.gz | |
compilers: Remove Environment parameter from Compiler.thread_flags
Same logic as the openmp flags
Diffstat (limited to 'mesonbuild/compilers/mixins/microchip.py')
| -rw-r--r-- | mesonbuild/compilers/mixins/microchip.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/mixins/microchip.py b/mesonbuild/compilers/mixins/microchip.py index 14ebb4cf8..22cc040e1 100644 --- a/mesonbuild/compilers/mixins/microchip.py +++ b/mesonbuild/compilers/mixins/microchip.py @@ -72,7 +72,7 @@ class Xc16Compiler(Compiler): def get_pch_use_args(self, pch_dir: str, header: str) -> T.List[str]: return [] - def thread_flags(self, env: 'Environment') -> T.List[str]: + def thread_flags(self) -> T.List[str]: return [] def get_coverage_args(self) -> T.List[str]: @@ -135,7 +135,7 @@ class Xc32Compiler(CompilerBase): def get_instruction_set_args(self, instruction_set: str) -> T.Optional[T.List[str]]: return None - def thread_flags(self, env: Environment) -> T.List[str]: + def thread_flags(self) -> T.List[str]: return [] def openmp_flags(self) -> T.List[str]: |
