diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2024-04-25 12:27:07 -0700 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-06-26 16:15:47 -0400 |
| commit | 87681980bc8f49d8f3dbbcb0db8944a487575e96 (patch) | |
| tree | d43c5cdc41998b941a16d3422e1a069549157d60 /mesonbuild/linkers | |
| parent | dbfd3e8c41b96d40511f9a683d9718e2aca32275 (diff) | |
| download | meson-87681980bc8f49d8f3dbbcb0db8944a487575e96.tar.gz | |
compilers: pass Environment to openmp_flags
This will be needed by the Apple compiler
Diffstat (limited to 'mesonbuild/linkers')
| -rw-r--r-- | mesonbuild/linkers/linkers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/linkers/linkers.py b/mesonbuild/linkers/linkers.py index 7507f5ab7..f5e808082 100644 --- a/mesonbuild/linkers/linkers.py +++ b/mesonbuild/linkers/linkers.py @@ -62,7 +62,7 @@ class StaticLinker: def thread_link_flags(self, env: 'Environment') -> T.List[str]: return [] - def openmp_flags(self) -> T.List[str]: + def openmp_flags(self, env: Environment) -> T.List[str]: return [] def get_option_link_args(self, options: 'KeyedOptionDictType') -> T.List[str]: |
