Compile with march=native

This commit is contained in:
Matthew Honnibal 2017-10-18 21:46:34 +02:00
parent 65bf5e85bd
commit 79fcf8576a

View File

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