mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-27 21:39:34 +00:00
To run unit-test (meson) on cross-compilation, we need a wrapper to run the binary (wine, qemu, ...), but: - We have no emulator for android (we have one for the system, but we can't simply run a binary) - With dynamic compilation, it seems pretty complex to configure them correctly. - For mingw32 compilation, `wine` need to be correctly configured to find dll from the system mingw32 installation.
20 lines
490 B
Plaintext
20 lines
490 B
Plaintext
[binaries]
|
|
pkgconfig = 'pkg-config'
|
|
c = '{toolchain.binaries[CC]}'
|
|
ar = '{toolchain.binaries[AR]}'
|
|
cpp = '{toolchain.binaries[CXX]}'
|
|
strip = '{toolchain.binaries[STRIP]}'
|
|
|
|
[properties]
|
|
c_link_args = {extra_libs!r}
|
|
cpp_link_args = {extra_libs!r}
|
|
c_args = {extra_cflags!r}
|
|
cpp_args = {extra_cflags!r}
|
|
android_abi = '{host_machine[abi]}'
|
|
|
|
[host_machine]
|
|
cpu_family = '{host_machine[cpu_family]}'
|
|
cpu = '{host_machine[cpu]}'
|
|
system = '{host_machine[lsystem]}'
|
|
endian = '{host_machine[endian]}'
|