File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# This needs to be run from the root of the project.
4
- # To update: docker pull quay.io/pypa/manylinux2010_x86_64
4
+
5
5
set -e
6
6
export PYTHONUNBUFFERED=1
7
7
export PYTHONDONTWRITEBYTECODE=1
@@ -15,10 +15,7 @@ export PIP_NO_WARN_SCRIPT_LOCATION=1
15
15
if [ -d /greenlet ]; then
16
16
# Running inside docker
17
17
export GREENLET_MANYLINUX=1
18
- # Build for speed (we're going to test this anyway) and without assertions.
19
- # Note: -Ofast includes -ffast-math which affects process-wide floating-point flags (e.g. can affect numpy).
20
- # It may also violate standards compliance in a few ways. Rather than opt-out with -fno-fast-math,
21
- # we use O3, which has neither of those problems.
18
+ # Our setup.py overrides this with -Os; be sure it does.
22
19
export CFLAGS=" -O3 -DNDEBUG -Wall"
23
20
24
21
apt-get update
You can’t perform that action at this time.
0 commit comments