aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-10-10 22:05:13 +0200
committerDylan Baker <dylan@pnwbakers.com>2019-10-10 16:25:35 -0700
commit27c01dff01832fa9d0c92602d0dc25b6ded9d2e9 (patch)
tree5b3adc6a270bc67e7a073aaa5ce1e2dea08c22c4
parent17f766105f0f96eaa2ed41b4f5fb23f98944888e (diff)
downloadmeson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.zip
meson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.tar.gz
meson-27c01dff01832fa9d0c92602d0dc25b6ded9d2e9.tar.bz2
cmake: Blacklist MS debug flags (fixes #6021)
-rw-r--r--mesonbuild/cmake/interpreter.py3
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 = [