We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8e5c0 commit f73cd55Copy full SHA for f73cd55
make-manylinux
@@ -23,6 +23,12 @@ if [ -d /greenlet -a -d /opt/python ]; then
23
# It may also violate standards compliance in a few ways. Rather than opt-out with -fno-fast-math,
24
# we use O3, which has neither of those problems.
25
export CFLAGS="-O3 -DNDEBUG -Wall"
26
+ # 2025-10-21: Sometime after 2025-10-01, the manylinux_ppc64le
27
+ # environment started shipping a version of Python 3.14 that wants to use
28
+ # clang++ by default. That's not installed here, and I can't get yum to work
29
+ # to try to install it, but luckily g++ works just as well --- that's what
30
+ # everything else uses.
31
+ export CXX="g++"
32
# Build in an isolated directory
33
mkdir /tmp/build
34
cd /tmp/build
0 commit comments