diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-10-10 22:05:13 +0200 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-11-07 17:11:24 +0530 |
commit | 00e9feafb397d01258ccae6fbdd7a5fc431a0460 (patch) | |
tree | d83bd1f5b6095de92b231c057b52d9a141d5101b | |
parent | 792a8622017802c9394d39dcd4af354a6a2ed505 (diff) | |
download | meson-00e9feafb397d01258ccae6fbdd7a5fc431a0460.zip meson-00e9feafb397d01258ccae6fbdd7a5fc431a0460.tar.gz meson-00e9feafb397d01258ccae6fbdd7a5fc431a0460.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 = [ |