41767e2653
This is based on the upstream manylinux container images at https://github.com/pyca/infra and builds a manylinux2014_aarch64 image with openssl installed in such a way we can use the image to build cryptography manylinux wheels, hopefully. Change-Id: I0aea20081b7025c1f9cc4c75e49646737861ba8e
29 lines
839 B
Bash
Executable File
29 lines
839 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
LIBFFI_SHA256="d06ebb8e1d9a22d19e38d63fdb83954253f39bedc5d46232a05645685722ca37"
|
|
LIBFFI_VERSION="3.2.1"
|
|
|
|
function check_sha256sum {
|
|
local fname=$1
|
|
local sha256=$2
|
|
echo "${sha256} ${fname}" > "${fname}.sha256"
|
|
sha256sum -c "${fname}.sha256"
|
|
rm "${fname}.sha256"
|
|
}
|
|
|
|
curl -#O "https://mirrors.ocf.berkeley.edu/debian/pool/main/libf/libffi/libffi_${LIBFFI_VERSION}.orig.tar.gz"
|
|
check_sha256sum "libffi_${LIBFFI_VERSION}.orig.tar.gz" ${LIBFFI_SHA256}
|
|
tar zxf libffi*.orig.tar.gz
|
|
PATH=/opt/perl/bin:$PATH
|
|
pushd libffi*
|
|
if [ "$1" == "manylinux1" ]; then
|
|
STACK_PROTECTOR_FLAGS="-fstack-protector --param=ssp-buffer-size=4"
|
|
else
|
|
STACK_PROTECTOR_FLAGS="-fstack-protector-strong"
|
|
fi
|
|
./configure CFLAGS="-g -O2 $STACK_PROTECTOR_FLAGS -Wformat -Werror=format-security"
|
|
make -j8 install
|
|
popd
|
|
rm -rf libffi*
|