summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-17 01:05:55 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-17 01:05:55 +0200
commit7f03ec206f16574f392574d1622a55f33189242f (patch)
treecf70616f6104a1927039f973eb6a9d2ee2848783
parent5b8f5277fdca04b50b906af9ca1851e7f9191163 (diff)
downloadpython-lxml-7f03ec206f16574f392574d1622a55f33189242f.tar.gz
Fix wheel build CFLAGS in CI.
-rw-r--r--tools/ci-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci-run.sh b/tools/ci-run.sh
index 6fd27637..4808fe1d 100644
--- a/tools/ci-run.sh
+++ b/tools/ci-run.sh
@@ -61,7 +61,7 @@ CFLAGS="-Og -g -fPIC" PYTHONUNBUFFERED=x make test || exit 1
python setup.py install || exit 1
python -c "from lxml import etree" || exit 1
-CFLAGS="-O3 -g1 -march=generic -fPIC -flto" \
+CFLAGS="-O3 -g1 -mtune=generic -fPIC -flto" \
LDFLAGS="-flto" \
make clean wheel || exit 1