1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-04-06 10:14:13 +03:00
This commit is contained in:
ines 2018-01-14 14:37:21 +01:00
commit 8610252e5d

View File

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