Skip to content

Commit

Permalink
ci: add d3d11 to mingw build
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 authored and jeeb committed Jun 30, 2020
1 parent ace249a commit 8fbc4b1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 19 deletions.
16 changes: 10 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ _macbase:
env:
- HOMEBREW_NO_AUTO_UPDATE=1
- HOMEBREW_NO_INSTALL_CLEANUP=1
before_cache:
- brew cleanup -s
cache:
directories:
- $HOME/Library/Caches/Homebrew
- &macNew
<<: *macOld
addons:
Expand All @@ -22,7 +27,11 @@ _mingwbase:
addons:
apt:
packages: ['autoconf', 'automake', 'pkg-config', 'gcc-mingw-w64',
'nasm', 'yasm']
'gcc-multilib', 'nasm', 'yasm']
before_install: |
# upgrade MinGW CRT to the one from Ubuntu 20.04 (required for D3D11):
wget "http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw-w64/"mingw-w64-{common,i686-dev,x86-64-dev}_7.0.0-2_all.deb
sudo apt-get install -y ./mingw-w64-*.deb
cache:
directories:
- mingw_prefix/
Expand Down Expand Up @@ -131,12 +140,7 @@ before_install:
fi
fi
before_cache:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew cleanup -s ; fi
cache:
directories:
- $HOME/Library/Caches/Homebrew
script:
- ./bootstrap.py
Expand Down
47 changes: 34 additions & 13 deletions ci/build-mingw64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ commonflags="--disable-static --enable-shared"
export PKG_CONFIG_SYSROOT_DIR="$prefix_dir"
export PKG_CONFIG_LIBDIR="$PKG_CONFIG_SYSROOT_DIR/lib/pkgconfig"

export CC=$TARGET-gcc
export CXX=$TARGET-g++
# -posix is Ubuntu's variant with pthreads support
export CC=$TARGET-gcc-posix
export CXX=$TARGET-g++-posix
export AR=$TARGET-ar
export NM=$TARGET-nm
export RANLIB=$TARGET-ranlib
Expand Down Expand Up @@ -72,6 +73,25 @@ if [ ! -e "$prefix_dir/lib/libavcodec.dll.a" ]; then
popd
fi

## shaderc + spirv-cross
if [ ! -e "$prefix_dir/lib/libspirv-cross-c-shared.dll.a" ]; then
if [ ! -d shaderc ]; then
$gitclone https://github.com/google/shaderc.git
(cd shaderc && ./utils/git-sync-deps)
fi
builddir shaderc
cmake .. -DCMAKE_SYSTEM_NAME=Windows \
-DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF \
-DSHADERC_SKIP_TESTS=ON -DCMAKE_INSTALL_PREFIX=/
makeplusinstall
popd
builddir shaderc/third_party/spirv-cross
cmake .. -DCMAKE_SYSTEM_NAME=Windows \
-DSPIRV_CROSS_SHARED=ON -DSPIRV_CROSS_{CLI,STATIC}=OFF
makeplusinstall
popd
fi

## freetype2
if [ ! -e "$prefix_dir/lib/libfreetype.dll.a" ]; then
ver=2.10.2
Expand Down Expand Up @@ -104,22 +124,23 @@ if [ ! -e "$prefix_dir/lib/libass.dll.a" ]; then
popd
fi

## lua
if [ ! -e "$prefix_dir/lib/liblua.a" ]; then
ver=5.2.4
gettar "https://www.lua.org/ftp/lua-${ver}.tar.gz"
pushd lua-${ver}
make PLAT=mingw INSTALL_TOP="$prefix_dir" TO_BIN=/dev/null \
CC="$CC" AR="$AR r" all install
make INSTALL_TOP="$prefix_dir" pc >"$prefix_dir/lib/pkgconfig/lua.pc"
printf 'Name: Lua\nDescription:\nVersion: ${version}\nLibs: -L${libdir} -llua\nCflags: -I${includedir}\n' \
>>"$prefix_dir/lib/pkgconfig/lua.pc"
## luajit
if [ ! -e "$prefix_dir/lib/libluajit-5.1.a" ]; then
ver=2.0.5
gettar "http://luajit.org/download/LuaJIT-${ver}.tar.gz"
pushd LuaJIT-${ver}
hostcc=gcc
[[ "$TARGET" == "i686-"* ]] && hostcc="$hostcc -m32"
make HOST_CC="$hostcc" CROSS=$TARGET- TARGET_SYS=Windows \
BUILDMODE=static amalg
make DESTDIR="$prefix_dir" INSTALL_DEP= FILE_T=luajit.exe install
popd
fi

## mpv
PKG_CONFIG=pkg-config CFLAGS="-I'$prefix_dir/include'" LDFLAGS="-L'$prefix_dir/lib'" \
python3 ./waf configure \
--enable-libmpv-shared --lua=52
--enable-libmpv-shared --lua=luajit \
--enable-{shaderc,spirv-cross,d3d11}

python3 ./waf build --verbose

0 comments on commit 8fbc4b1

Please sign in to comment.