diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/environment.py b/environment.py index 90cfad3..b3cbcaf 100644 --- a/environment.py +++ b/environment.py @@ -94,7 +94,7 @@ class CCompiler(): def get_output_flags(self, target): return ['-o', target] - + def get_linker_output_flags(self, outputname): return ['-o', outputname] @@ -436,8 +436,8 @@ class JavaCompiler(): def get_compile_only_flags(self): return [] - def get_output_flags(self, target): - return [] + def get_output_flags(self, subdir): + return ['-d', subdir, '-s', subdir] def get_linker_output_flags(self, outputname): return [] |