aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-06-22 21:32:17 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2015-06-22 21:32:17 +0300
commit9c63d8cd48f4c74fbd9521c9bad1f6d4938915f7 (patch)
tree072ee382fd5ec1c3bf9efa2aea077d5e6edb146b
parent756b3365be07f895ace2b5ece6343aa4649264a8 (diff)
downloadmeson-9c63d8cd48f4c74fbd9521c9bad1f6d4938915f7.zip
meson-9c63d8cd48f4c74fbd9521c9bad1f6d4938915f7.tar.gz
meson-9c63d8cd48f4c74fbd9521c9bad1f6d4938915f7.tar.bz2
Added name_string method. Closes #177. Closes #178
-rw-r--r--compilers.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py
index 33c2159..66da864 100644
--- a/compilers.py
+++ b/compilers.py
@@ -855,6 +855,9 @@ class RustCompiler():
def needs_static_linker(self):
return False
+ def name_string(self):
+ return ' '.join(self.exelist)
+
def get_exelist(self):
return self.exelist