diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-14 19:25:46 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-14 19:25:46 +0300 |
commit | 34f1042a7e0c52f9038851beb6497af013e8ef25 (patch) | |
tree | 701faf59b0994a0d77578b5b518784a053611aeb /environment.py | |
parent | 73b9353a1081e6f7d6c2c3e4fc76b224ef33d874 (diff) | |
download | meson-34f1042a7e0c52f9038851beb6497af013e8ef25.zip meson-34f1042a7e0c52f9038851beb6497af013e8ef25.tar.gz meson-34f1042a7e0c52f9038851beb6497af013e8ef25.tar.bz2 |
Minor MSVC tweak.
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/environment.py b/environment.py index ad7328d..0212dbd 100755 --- a/environment.py +++ b/environment.py @@ -275,10 +275,10 @@ class VisualStudioCCompiler(CCompiler): return ['/OUT:' + outputname] def get_pic_flags(self): - return [] + return ['/LD'] def get_std_shared_lib_link_flags(self): - return [] + return ['/DLL'] def sanity_check(self, work_dir): source_name = os.path.join(work_dir, 'sanitycheckc.c') |