diff options
Diffstat (limited to 'compilers.py')
-rw-r--r-- | compilers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py index 160d9e5..33c2159 100644 --- a/compilers.py +++ b/compilers.py @@ -809,6 +809,9 @@ class ValaCompiler(): self.id = 'unknown' self.language = 'vala' + def name_string(self): + return ' '.join(self.exelist) + def needs_static_linker(self): return False # Because compiles into C. |