The whole test suite runs cross-built with mingw and armhf.

This commit is contained in:
Jussi Pakkanen
2013-08-30 23:25:09 +03:00
parent 0f35ac078d
commit c3640ef036
2 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,8 @@ test_build_dir = 'work area'
install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir')
meson_command = './meson.py'
extra_flags = ['--cross-file', 'cross/ubuntu-armhf.txt']
#extra_flags = ['--cross-file', 'cross/ubuntu-armhf.txt']
extra_flags = ['--cross-file', 'cross/ubuntu-mingw.txt']
ninja_command = environment.detect_ninja()
if ninja_command is None:
raise RuntimeError('Could not find Ninja executable.')

View File

@ -1,6 +1,6 @@
project('pipeline test', 'c')
e1 = executable('srcgen', 'srcgen.c')
e1 = executable('srcgen', 'srcgen.c', native : true)
gen = generator(e1,
outputs : '@BASENAME@.h',