diff options
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/environment.py b/environment.py index a5c3e8c..6f89b47 100755 --- a/environment.py +++ b/environment.py @@ -201,7 +201,13 @@ class VisualStudioCCompiler(CCompiler): def get_linker_output_flags(self, outputname): return ['/OUT:' + outputname] - + + def get_pic_flags(self): + return [] + + def get_std_shared_lib_link_flags(self): + return [] + def sanity_check(self, work_dir): source_name = os.path.join(work_dir, 'sanitycheckc.c') binary_name = os.path.join(work_dir, 'sanitycheckc') |