cmake: Blacklist MS debug flags (fixes #6021)

This commit is contained in:
Daniel Mensinger 2019-10-10 22:05:13 +02:00 committed by Dylan Baker
parent 17f766105f
commit 27c01dff01
1 changed files with 2 additions and 1 deletions

View File

@ -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 = [