diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-02-19 21:04:23 +0100 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-28 14:33:21 +0200 |
| commit | dfe3d56bfd28eb7b960f1beb09f502f9902b45fa (patch) | |
| tree | a6733c2dca9e93bef164e21193a1fa506deec84f /mesonbuild/modules/unstable_simd.py | |
| parent | c9bd84fd25dd24999ac2d20b616e91efb9038905 (diff) | |
| download | meson-dfe3d56bfd28eb7b960f1beb09f502f9902b45fa.tar.gz | |
Print '(cached)' when compiler result was cached
Diffstat (limited to 'mesonbuild/modules/unstable_simd.py')
| -rw-r--r-- | mesonbuild/modules/unstable_simd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/unstable_simd.py b/mesonbuild/modules/unstable_simd.py index 18a1099c4..2f2f67f79 100644 --- a/mesonbuild/modules/unstable_simd.py +++ b/mesonbuild/modules/unstable_simd.py @@ -66,7 +66,7 @@ class SimdModule(ExtensionModule): mlog.log('Compiler supports %s:' % iset, mlog.red('NO')) continue if args: - if not compiler.has_multi_arguments(args, state.environment): + if not compiler.has_multi_arguments(args, state.environment)[0]: mlog.log('Compiler supports %s:' % iset, mlog.red('NO')) continue mlog.log('Compiler supports %s:' % iset, mlog.green('YES')) |
