aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-02-02 21:54:30 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-02-02 21:54:30 +0200
commita91b3fcdc5407bb881f76a53253d273b620c50fc (patch)
tree01eadcb6974160c85c91b13cc07705a0025bd8c4 /compilers.py
parent5a21b37149165661eb4389b7e7caf91f81f35b22 (diff)
downloadmeson-a91b3fcdc5407bb881f76a53253d273b620c50fc.zip
meson-a91b3fcdc5407bb881f76a53253d273b620c50fc.tar.gz
meson-a91b3fcdc5407bb881f76a53253d273b620c50fc.tar.bz2
Add thread_link_flags to static linkers.
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py
index 7561883..d08b612 100644
--- a/compilers.py
+++ b/compilers.py
@@ -1454,6 +1454,9 @@ class VisualStudioLinker():
def build_rpath_args(self, build_dir, rpath_paths, install_rpath):
return []
+ def thread_link_flags(self):
+ return []
+
class ArLinker():
std_args = ['csr']
@@ -1485,3 +1488,5 @@ class ArLinker():
def get_always_args(self):
return []
+ def thread_link_flags(self):
+ return []