FFmpeg-Builds/scripts.d/10-mingw.sh

53 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
MINGW_REPO="https://github.com/mirror/mingw-w64.git"
2021-04-03 23:09:54 +00:00
MINGW_COMMIT="c17efd05d019136a9b3527e2dd32234175c0a9f9"
ffbuild_enabled() {
[[ $TARGET == win* ]] || return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$MINGW_REPO" "$MINGW_COMMIT" mingw
cd mingw/mingw-w64-headers
unset CFLAGS
unset CXXFLAGS
unset LDFLAGS
unset PKG_CONFIG_LIBDIR
autoreconf -i
local myconf=(
--prefix="/usr/$FFBUILD_TOOLCHAIN"
--host="$FFBUILD_TOOLCHAIN"
2020-10-11 14:40:40 +00:00
--with-default-win32-winnt="0x601"
--enable-idl
)
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
cd ../mingw-w64-libraries/winpthreads
autoreconf -i
local myconf=(
--prefix="/usr/$FFBUILD_TOOLCHAIN"
--host="$FFBUILD_TOOLCHAIN"
--with-pic
--disable-shared
--enable-static
)
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
2020-11-10 14:39:22 +00:00
ffbuild_configure() {
echo --disable-w32threads --enable-pthreads
}