Commit ceb361a3 authored by Jason Madden's avatar Jason Madden

Automate unsetting the -march flag. Fixes #791

[skip ci]
parent 8b7a19e4
...@@ -9,6 +9,12 @@ export WORKON_HOME=$HOME/Projects/VirtualEnvs ...@@ -9,6 +9,12 @@ export WORKON_HOME=$HOME/Projects/VirtualEnvs
export VIRTUALENVWRAPPER_LOG_DIR=~/.virtualenvs export VIRTUALENVWRAPPER_LOG_DIR=~/.virtualenvs
source `which virtualenvwrapper.sh` source `which virtualenvwrapper.sh`
# Make sure there are no -march flags set
# https://github.com/gevent/gevent/issues/791
unset CFLAGS
unset CXXFLAGS
unset CPPFLAGS
cd /tmp/gevent cd /tmp/gevent
virtualenv -p $1 `basename $1` virtualenv -p $1 `basename $1`
cd `basename $1` cd `basename $1`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment