mirror of
https://github.com/mstorsjo/llvm-mingw.git
synced 2025-04-19 16:36:53 +08:00
Some checks failed
Builds / prepare (push) Has been cancelled
Builds / test-ffmpeg (push) Has been cancelled
Builds / upload-nightly (push) Has been cancelled
Builds / test-libcxx (x86_64, i686-w64-mingw32-) (push) Has been cancelled
Builds / test-openmp (i686, <nil>) (push) Has been cancelled
Builds / linux (push) Has been cancelled
Builds / linux-cross-aarch64 (push) Has been cancelled
Builds / linux-asserts (push) Has been cancelled
Builds / macos (push) Has been cancelled
Builds / msys2 (clang64) (push) Has been cancelled
Builds / msys2 (mingw64) (push) Has been cancelled
Builds / linux-cross-windows (aarch64, ucrt) (push) Has been cancelled
Builds / linux-cross-windows (armv7, ucrt) (push) Has been cancelled
Builds / linux-cross-windows (i686, ucrt) (push) Has been cancelled
Builds / linux-cross-windows (x86_64, ucrt) (push) Has been cancelled
Builds / test-toolchain (i686) (push) Has been cancelled
Builds / test-toolchain (x86_64) (push) Has been cancelled
Builds / test-libcxx (x86_64, <nil>) (push) Has been cancelled
Builds / test-openmp (x86_64, -m64) (push) Has been cancelled
Builds / test-compiler-rt (i686) (push) Has been cancelled
Builds / test-compiler-rt (x86_64) (push) Has been cancelled
Builds / linux-test-cross-build-ffmpeg (aarch64) (push) Has been cancelled
Builds / linux-test-cross-build-ffmpeg (armv7) (push) Has been cancelled
Builds / linux-test-cross-build-ffmpeg (i686) (push) Has been cancelled
Builds / linux-test-cross-build-ffmpeg (x86_64) (push) Has been cancelled
170 lines
4.4 KiB
Bash
Executable File
170 lines
4.4 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2018 Martin Storsjo
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
set -e
|
|
|
|
: ${LIBFFI_VERSION:=v3.4.6}
|
|
: ${PYTHON_VERSION:=v3.12.7}
|
|
: ${PYTHON_VERSION_MINGW:=d21f60d4a8bb03e0309fe3907b104f1878059f90}
|
|
|
|
unset HOST
|
|
|
|
BUILDDIR=build
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--host=*)
|
|
HOST="${1#*=}"
|
|
BUILDDIR=$BUILDDIR-$HOST
|
|
;;
|
|
*)
|
|
PREFIX="$1"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if [ -z "$CHECKOUT_ONLY" ]; then
|
|
if [ -z "$PREFIX" ]; then
|
|
echo $0 --host=triple dest
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$PREFIX"
|
|
PREFIX="$(cd "$PREFIX" && pwd)"
|
|
fi
|
|
|
|
MAKE=make
|
|
if command -v gmake >/dev/null; then
|
|
MAKE=gmake
|
|
fi
|
|
|
|
: ${CORES:=$(nproc 2>/dev/null)}
|
|
: ${CORES:=$(sysctl -n hw.ncpu 2>/dev/null)}
|
|
: ${CORES:=4}
|
|
|
|
if [ ! -d libffi ]; then
|
|
git clone https://github.com/libffi/libffi.git
|
|
CHECKOUT_LIBFFI=1
|
|
fi
|
|
|
|
if [ -n "$SYNC" ] || [ -n "$CHECKOUT_LIBFFI" ]; then
|
|
cd libffi
|
|
[ -z "$SYNC" ] || git fetch
|
|
git reset --hard
|
|
git checkout $LIBFFI_VERSION
|
|
autoreconf -vfi
|
|
cd ..
|
|
fi
|
|
|
|
if [ -z "$HOST" ]; then
|
|
# Use a separate checkout for python for the native build;
|
|
# mingw builds use a separate fork, maintained by msys2
|
|
# which doesn't build on regular Unix
|
|
if [ ! -d cpython-native ]; then
|
|
git clone https://github.com/python/cpython.git cpython-native
|
|
CHECKOUT_PYTHON_NATIVE=1
|
|
fi
|
|
|
|
if [ -n "$SYNC" ] || [ -n "$CHECKOUT_PYTHON_NATIVE" ]; then
|
|
cd cpython-native
|
|
[ -z "$SYNC" ] || git fetch
|
|
git checkout $PYTHON_VERSION
|
|
cd ..
|
|
fi
|
|
|
|
[ -z "$CHECKOUT_ONLY" ] || exit 0
|
|
|
|
cd libffi
|
|
[ -z "$CLEAN" ] || rm -rf $BUILDDIR
|
|
mkdir -p $BUILDDIR
|
|
cd $BUILDDIR
|
|
../configure --prefix="$PREFIX" --disable-symvers --disable-docs
|
|
$MAKE -j$CORES
|
|
$MAKE install
|
|
cd ../..
|
|
|
|
cd cpython-native
|
|
[ -z "$CLEAN" ] || rm -rf $BUILDDIR
|
|
mkdir -p $BUILDDIR
|
|
cd $BUILDDIR
|
|
../configure --prefix="$PREFIX" \
|
|
CFLAGS="-I$PREFIX/include" CXXFLAGS="-I$PREFIX/include" LDFLAGS="-L$PREFIX/lib -Wl,-s" \
|
|
--without-ensurepip \
|
|
--disable-test-modules
|
|
$MAKE -j$CORES
|
|
$MAKE install
|
|
exit 0
|
|
fi
|
|
|
|
# Fetching
|
|
if [ ! -d cpython-mingw ]; then
|
|
git clone https://github.com/msys2-contrib/cpython-mingw.git
|
|
CHECKOUT_PYTHON=1
|
|
fi
|
|
|
|
if [ -n "$SYNC" ] || [ -n "$CHECKOUT_PYTHON" ]; then
|
|
cd cpython-mingw
|
|
[ -z "$SYNC" ] || git fetch
|
|
git reset --hard
|
|
git checkout $PYTHON_VERSION_MINGW
|
|
autoreconf -vfi
|
|
cd ..
|
|
fi
|
|
|
|
[ -z "$CHECKOUT_ONLY" ] || exit 0
|
|
|
|
cd libffi
|
|
[ -z "$CLEAN" ] || rm -rf $BUILDDIR
|
|
mkdir -p $BUILDDIR
|
|
cd $BUILDDIR
|
|
../configure --prefix="$PREFIX" --host=$HOST --disable-symvers --disable-docs
|
|
$MAKE -j$CORES
|
|
$MAKE install
|
|
cd ../..
|
|
|
|
cd cpython-mingw
|
|
[ -z "$CLEAN" ] || rm -rf $BUILDDIR
|
|
mkdir -p $BUILDDIR
|
|
cd $BUILDDIR
|
|
BUILD=$(../config.guess) # Python configure requires build triplet for cross compilation
|
|
# Locate the native python3 that we've built before, from the path
|
|
NATIVE_PYTHON="$(command -v python3)"
|
|
|
|
export CC=$HOST-gcc
|
|
export CXX=$HOST-g++
|
|
|
|
../configure --prefix="$PREFIX" --build=$BUILD --host=$HOST \
|
|
CFLAGS="-I$PREFIX/include" CXXFLAGS="-I$PREFIX/include" LDFLAGS="-L$PREFIX/lib -Wl,-s" \
|
|
PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig" \
|
|
--with-build-python="$NATIVE_PYTHON" \
|
|
--enable-shared \
|
|
--with-system-ffi \
|
|
--without-ensurepip \
|
|
--without-c-locale-coercion \
|
|
--disable-test-modules
|
|
|
|
$MAKE -j$CORES
|
|
$MAKE install
|
|
find $PREFIX/lib/python* -name __pycache__ | xargs rm -rf
|
|
|
|
# Provide a versionless executable as well; msys2 does something similar
|
|
# (for python3, python3w, python3-config, idle3 and pydoc3) after installing
|
|
# a Python version that is supposed to be the primary Python.
|
|
cp -a $PREFIX/bin/python3.exe $PREFIX/bin/python.exe
|
|
|
|
cd ../..
|