Fix mac build

This commit is contained in:
Ken Payson 2017-04-10 15:53:17 -07:00
parent f7796e0b2f
commit 3b90055f2c
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ class BuildExt(build_ext.build_ext):
"""Custom build_ext command to enable compiler-specific flags."""
C_OPTIONS = {
'unix': ('-pthread', '-std=gnu99'),
'unix': ('-pthread',),
'msvc': (),
}
LINK_OPTIONS = {}