cmake: Blacklist MS debug flags (fixes #6021)

pull/6026/head
Daniel Mensinger 6 years ago committed by Dylan Baker
parent 17f766105f
commit 27c01dff01
  1. 3
      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 = [

Loading…
Cancel
Save