mirror of https://github.com/explosion/spaCy.git
Fix compiler flags, addressing #1591
This commit is contained in:
parent
0153220304
commit
2e449c1fbf
5
setup.py
5
setup.py
|
@ -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']
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue