Fix compiler flags, addressing #1591

This commit is contained in:
Matthew Honnibal 2018-01-14 14:34:36 +01:00
parent 0153220304
commit 2e449c1fbf
1 changed files with 2 additions and 3 deletions

View File

@ -46,9 +46,8 @@ MOD_NAMES = [
COMPILE_OPTIONS = { COMPILE_OPTIONS = {
'msvc': ['/Ox', '/EHsc'], 'msvc': ['/Ox', '/EHsc'],
'mingw32' : ['-O3', '-Wno-strict-prototypes', '-Wno-unused-function'], 'mingw32' : ['-O2', '-Wno-strict-prototypes', '-Wno-unused-function'],
'other' : ['-O3', '-Wno-strict-prototypes', '-Wno-unused-function', 'other' : ['-O2', '-Wno-strict-prototypes', '-Wno-unused-function']
'-march=native']
} }