diff options
-rw-r--r-- | compilers.py | 3 |
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 |