OK then, it's a meson bug. Also -win32 doesn't have C++11 threads :|
This commit is contained in:
parent
31a91d6fc0
commit
46459dc8b2
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue