Skip to content

Commit

Permalink
Misc build fixes. (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson authored Sep 19, 2019
1 parent e01be7e commit e2f3deb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ dmypy.json
### Python.VirtualEnv Stack ###
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
Expand Down Expand Up @@ -215,7 +214,6 @@ pip-selfcheck.json
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def get_from_env(key):
# cflags += ['/MT']
pass
else:
cflags += ['-O3', '-Wextra', '-Werror', '-std=gnu99']
cflags += ['-O3', '-Wextra', '-Werror', '-Wno-strict-aliasing', '-std=gnu99']

if sys.platform == 'win32':
#the windows apis being used under the hood. Since we're static linking we have to follow the entire chain down
Expand Down

0 comments on commit e2f3deb

Please sign in to comment.