mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
fix: use meson subsystem and needs_exe_wrapper for cross builds on Windows
Relates-to: mesonbuild/meson#15840 Fixes: #15753 Test-bot: skip
This commit is contained in:
parent
c31cbecce1
commit
a47fd7d365
3 changed files with 6 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ jobs:
|
|||
- name: Install meson
|
||||
shell: bash
|
||||
run: |
|
||||
pip3 install --user meson==1.10.1
|
||||
pip3 install --user meson==1.11.0
|
||||
|
||||
- name: Run test
|
||||
shell: bash
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
[host_machine]
|
||||
system = 'windows'
|
||||
subsystem = 'windows'
|
||||
cpu_family = 'aarch64'
|
||||
cpu = 'arm64'
|
||||
endian = 'little'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
[host_machine]
|
||||
system = 'windows'
|
||||
subsystem = 'windows'
|
||||
cpu_family = 'x86_64'
|
||||
cpu = 'x86_64'
|
||||
endian = 'little'
|
||||
|
|
@ -11,3 +12,6 @@ ar = 'lib'
|
|||
ld = 'link'
|
||||
strip = 'llvm-strip'
|
||||
pkgconfig = 'pkg-config'
|
||||
|
||||
[properties]
|
||||
needs_exe_wrapper = false
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue