msvc: Don't use /O3 with MSVC

MSVC doesn't support that option, and warns about ignoring an unknown
option.
This commit is contained in:
Martin Storsjö 2018-09-30 22:28:50 +03:00 committed by Jussi Pakkanen
parent 6cf7d2492b
commit 07800e29c9
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ msvc_optimization_args = {'0': [],
'g': ['/O0'],
'1': ['/O1'],
'2': ['/O2'],
'3': ['/O3'],
'3': ['/O2'],
's': ['/O1'], # Implies /Os.
}