diff options
-rw-r--r-- | mesonbuild/compilers/c.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 312760e..2530adf 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -1275,6 +1275,9 @@ class VisualStudioCCompiler(CCompiler): def get_pic_args(self): return [] # PIC is handled by the loader on Windows + def gen_export_dynamic_link_args(self, env): + return [] # Not applicable with MSVC + def get_std_shared_lib_link_args(self): return ['/DLL'] |