From 8bc4953765005dce1267146168ccb852541172fe Mon Sep 17 00:00:00 2001
From: Jason Madden <jamadden@gmail.com>
Date: Thu, 12 Jul 2018 07:57:16 -0500
Subject: [PATCH] Try different CFLAGS to stop the pypy crash.

---
 .travis.yml | 2 +-
 Makefile    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index d7d43ffd..9a0cf71a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ env:
         - CCACHE_NOCPP2=true
         - CCACHE_SLOPPINESS=file_macro,time_macros,include_file_ctime,include_file_mtime
         - CCACHE_NOHASHDIR=true
-        - CFLAGS="-Ofast -pipe -fomit-frame-pointer -march=native"
+        - CFLAGS="-g -pipe -fomit-frame-pointer -march=native"
         - PYTHONHASHSEED=random
 
     matrix:
diff --git a/Makefile b/Makefile
index dd7e90bb..05228aae 100644
--- a/Makefile
+++ b/Makefile
@@ -179,7 +179,7 @@ develop:
 # disables the cache.
 # We need wheel>=0.26 on Python 3.5. See previous revisions.
 	time ${PYTHON} -m pip install -U --upgrade-strategy=eager -r ci-requirements.txt
-	GEVENTSETUP_EV_VERIFY=3 time ${PYTHON} -m pip install -U --upgrade-strategy=eager -e .[test,dnspython,events]
+	GEVENTSETUP_EV_VERIFY=3 time ${PYTHON} -m pip install -v -U --upgrade-strategy=eager -e .[test,dnspython,events]
 	${PYTHON} -m pip freeze
 	ccache -s
 	@${PYTHON} scripts/travis.py fold_end install
-- 
2.30.9