meson.build (1935b7ead18dbcbf459dbe7a8fd4253fbe1ed4d0) meson.build (9b089d254a5623baef01f7d0ec37331c1155f1ce)
1project('qemu', ['c'], meson_version: '>=0.63.0',
2 default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3 'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
4 version: files('VERSION'))
5
6add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
7add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
8add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough'])

--- 3044 unchanged lines hidden (view full) ---

3053 endif
3054 error('No accelerator available for target @0@'.format(target))
3055 endif
3056
3057 config_target += keyval.load('configs/targets' / target + '.mak')
3058 config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
3059
3060 if 'TARGET_NEED_FDT' in config_target and not fdt.found()
1project('qemu', ['c'], meson_version: '>=0.63.0',
2 default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3 'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
4 version: files('VERSION'))
5
6add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
7add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])
8add_test_setup('thorough', env: ['G_TEST_SLOW=1', 'SPEED=thorough'])

--- 3044 unchanged lines hidden (view full) ---

3053 endif
3054 error('No accelerator available for target @0@'.format(target))
3055 endif
3056
3057 config_target += keyval.load('configs/targets' / target + '.mak')
3058 config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
3059
3060 if 'TARGET_NEED_FDT' in config_target and not fdt.found()
3061 fdt_required += target
3061 if default_targets
3062 warning('Disabling ' + target + ' due to missing libfdt')
3063 else
3064 fdt_required += target
3065 endif
3062 continue
3063 endif
3064
3065 actual_target_dirs += target
3066
3067 # Add default keys
3068 if 'TARGET_BASE_ARCH' not in config_target
3069 config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}

--- 1441 unchanged lines hidden ---
3066 continue
3067 endif
3068
3069 actual_target_dirs += target
3070
3071 # Add default keys
3072 if 'TARGET_BASE_ARCH' not in config_target
3073 config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}

--- 1441 unchanged lines hidden ---