python/build/meson.py: keep Meson from executing Android-x86 test binaries
This commit is contained in:
parent
bd25528ca3
commit
8ab2722300
@ -69,6 +69,12 @@ c_link_args = {repr(toolchain.ldflags.split() + toolchain.libs.split())}
|
|||||||
|
|
||||||
cpp_args = {repr((toolchain.cppflags + ' ' + toolchain.cxxflags).split())}
|
cpp_args = {repr((toolchain.cppflags + ' ' + toolchain.cxxflags).split())}
|
||||||
cpp_link_args = {repr(toolchain.ldflags.split() + toolchain.libs.split())}
|
cpp_link_args = {repr(toolchain.ldflags.split() + toolchain.libs.split())}
|
||||||
|
""")
|
||||||
|
|
||||||
|
if 'android' in toolchain.actual_arch:
|
||||||
|
f.write("""
|
||||||
|
# Keep Meson from executing Android-x86 test binaries
|
||||||
|
needs_exe_wrapper = true
|
||||||
""")
|
""")
|
||||||
|
|
||||||
f.write(f"""
|
f.write(f"""
|
||||||
|
Loading…
Reference in New Issue
Block a user