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 e111f09 commit f07a8d1Copy full SHA for f07a8d1
.ci/docker/manywheel/build_scripts/build.sh
@@ -47,8 +47,20 @@ else
47
${PYTHON_COMPILE_DEPS}
48
fi
49
50
+# Manually update config.guess and config.sub
51
+curl -sL https://git.savannah.gnu.org/cgit/config.git/plain/config.guess -o build-aux/config.guess
52
+curl -sL https://git.savannah.gnu.org/cgit/config.git/plain/config.sub -o build-aux/config.sub
53
+
54
+# Set the architecture manually to avoid config.guess issues
55
+export BUILD_TYPE=ppc64le-linux
56
57
# Install newest autoconf
58
build_autoconf $AUTOCONF_ROOT $AUTOCONF_HASH
59
+tar -zxf autoconf-2.69.tar.gz
60
+cd autoconf-2.69
61
+./configure --build=$BUILD_TYPE
62
+make
63
+make install
64
autoconf --version
65
66
# Compile the latest Python releases.
0 commit comments