Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #684 from mesonbuild/pdb
Create pdb files with MSVC
- Loading branch information
Showing
with
149 additions
and 12 deletions.
- +6 −0 mesonbuild/backend/backends.py
- +71 −0 mesonbuild/backend/ninjabackend.py
- +37 −0 mesonbuild/build.py
- +27 −6 mesonbuild/compilers.py
- +1 −1 run_tests.py
- +3 −5 test cases/common/86 same basename/meson.build
- +1 −0 test cases/common/86 same basename/sharedsub/meson.build
- +3 −0 test cases/common/86 same basename/staticsub/meson.build
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1 @@ | ||
| shlib = shared_library('name', '../lib.c', c_args : '-DSHAR') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1,3 @@ | ||
| # On Windows a static lib is now libfoo.a, so it does not conflict with foo.lib | ||
| # from the shared library above | ||
| stlib = static_library('name', '../lib.c', c_args : '-DSTAT') |