diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-02-24 10:41:02 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-02-27 16:35:02 -0800 |
| commit | b2f86c461b72e405695ab1491baba00f45af93a6 (patch) | |
| tree | 1a59ca0fb4f545e7423de665ada1a2d551a599e6 | |
| parent | 64f3174daa54a2ef8cf63df94921919717057243 (diff) | |
| download | meson-b2f86c461b72e405695ab1491baba00f45af93a6.zip meson-b2f86c461b72e405695ab1491baba00f45af93a6.tar.gz meson-b2f86c461b72e405695ab1491baba00f45af93a6.tar.bz2 | |
compilers/mixins/islinker: Add stubs for thread_*_flags
| -rw-r--r-- | mesonbuild/compilers/mixins/islinker.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mesonbuild/compilers/mixins/islinker.py b/mesonbuild/compilers/mixins/islinker.py index 6a26de2..3092395 100644 --- a/mesonbuild/compilers/mixins/islinker.py +++ b/mesonbuild/compilers/mixins/islinker.py @@ -133,3 +133,9 @@ class BasicLinkerIsCompilerMixin: def get_link_debugfile_name(self, target: str) -> str: return '' + + def thread_flags(self, env: 'Environment') -> T.List[str]: + return [] + + def thread_link_flags(self, env: 'Environment') -> T.List[str]: + return [] |
