diff options
author | Peter Harris <peter@harr.ca> | 2017-03-27 21:27:51 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-28 23:01:48 +0300 |
commit | 65377ff16a032723cbc58b0f8d0166970ec45c77 (patch) | |
tree | 4570b999e7a0513053e9c9e59f4ea51a52be1d89 /mesonbuild/compilers.py | |
parent | 2376d6eadfef6719d434cd130386aeb66070aff4 (diff) | |
download | meson-65377ff16a032723cbc58b0f8d0166970ec45c77.zip meson-65377ff16a032723cbc58b0f8d0166970ec45c77.tar.gz meson-65377ff16a032723cbc58b0f8d0166970ec45c77.tar.bz2 |
Fix warning making static libs on msvc/ninja
The MSVC static library tool, lib.exe, does not understand the same set
of arguments as the linker. Avoid a warning by not adding /DEBUG or /PDB
to the command line when invoking lib.exe
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index 7f1897c..f16a05f 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -3055,9 +3055,8 @@ class VisualStudioLinker(StaticLinker): return VisualStudioCCompiler.unix_args_to_native(args) def get_link_debugfile_args(self, targetfile): - pdbarr = targetfile.split('.')[:-1] - pdbarr += ['pdb'] - return ['/DEBUG', '/PDB:' + '.'.join(pdbarr)] + # Static libraries do not have PDB files + return [] class ArLinker(StaticLinker): |