diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-10-10 22:05:13 +0200 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-10-10 16:25:35 -0700 |
commit | 27c01dff01832fa9d0c92602d0dc25b6ded9d2e9 (patch) | |
tree | 5b3adc6a270bc67e7a073aaa5ce1e2dea08c22c4 | |
parent | 17f766105f0f96eaa2ed41b4f5fb23f98944888e (diff) | |
download | meson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.zip meson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.tar.gz meson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.tar.bz2 |
cmake: Blacklist MS debug flags (fixes #6021)
-rw-r--r-- | mesonbuild/cmake/interpreter.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/cmake/interpreter.py b/mesonbuild/cmake/interpreter.py index 09ac7c6..f746f1a 100644 --- a/mesonbuild/cmake/interpreter.py +++ b/mesonbuild/cmake/interpreter.py @@ -84,7 +84,8 @@ skip_targets = ['UTILITY'] blacklist_compiler_flags = [ '/W1', '/W2', '/W3', '/W4', '/Wall', '/O1', '/O2', '/Ob', '/Od', '/Og', '/Oi', '/Os', '/Ot', '/Ox', '/Oy', '/Ob0', - '/RTC1', '/RTCc', '/RTCs', '/RTCu' + '/RTC1', '/RTCc', '/RTCs', '/RTCu', + '/Z7', '/Zi', '/ZI', ] blacklist_link_flags = [ |