OK then, it's a meson bug. Also -win32 doesn't have C++11 threads :|

This commit is contained in:
Pietro Gagliardi 2019-04-07 15:52:41 -04:00
parent 31a91d6fc0
commit 46459dc8b2
2 changed files with 5 additions and 6 deletions

View File

@ -1,15 +1,13 @@
[binaries]
c = '/usr/bin/i686-w64-mingw32-gcc-win32'
cpp = '/usr/bin/i686-w64-mingw32-g++-win32'
ar = '/usr/bin/i686-w64-mingw32-gcc-ar-win32'
c = '/usr/bin/i686-w64-mingw32-gcc'
cpp = '/usr/bin/i686-w64-mingw32-g++'
ar = '/usr/bin/i686-w64-mingw32-gcc-ar'
strip = '/usr/bin/i686-w64-mingw32-strip'
pkgconfig = '/usr/bin/i686-w64-mingw32-pkg-config'
windres = '/usr/bin/i686-w64-mingw32-windres'
[properties]
root = '/usr/i686-w64-mingw32'
c_args = ['--std=c99']
cpp_args = ['--std=c++11']
[host_machine]
system = 'windows'

View File

@ -3,5 +3,6 @@
steps:
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install meson
# 0.50.0 has a bug that prevents cross-builds (like our MinGW-w64 build) to not work properly
pip install 'meson!=0.50.0'
displayName: 'Install Latest Meson'