Skip to content

Commit f07a8d1

Browse files
build script
1 parent e111f09 commit f07a8d1

File tree

1 file changed

+12
-0
lines changed
  • .ci/docker/manywheel/build_scripts

1 file changed

+12
-0
lines changed

.ci/docker/manywheel/build_scripts/build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,20 @@ else
4747
${PYTHON_COMPILE_DEPS}
4848
fi
4949

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+
5057
# Install newest autoconf
5158
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
5264
autoconf --version
5365

5466
# Compile the latest Python releases.

0 commit comments

Comments
 (0)