diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-02-19 16:34:17 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-17 19:15:04 +0300 |
commit | 8396c4f3e6bfea6bbef6539055090902c089d375 (patch) | |
tree | c5bfc233e992955fe81e5e75657b74866e8b6cea /mesonbuild/modules/simd.py | |
parent | fefbb296f7100a31044fe281735bb413807680f0 (diff) | |
download | meson-8396c4f3e6bfea6bbef6539055090902c089d375.zip meson-8396c4f3e6bfea6bbef6539055090902c089d375.tar.gz meson-8396c4f3e6bfea6bbef6539055090902c089d375.tar.bz2 |
Added VS support to simd detector.
Diffstat (limited to 'mesonbuild/modules/simd.py')
-rw-r--r-- | mesonbuild/modules/simd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/modules/simd.py b/mesonbuild/modules/simd.py index 3a9fe59..4a9bdd7 100644 --- a/mesonbuild/modules/simd.py +++ b/mesonbuild/modules/simd.py @@ -57,6 +57,7 @@ class SimdModule(ExtensionModule): iset_fname = kwargs[iset] # Migth also be an array or Files. static_library will validate. args = compiler.get_instruction_set_args(iset) if args is None: + mlog.log('Compiler supports %s:' % iset, mlog.red('NO')) continue if len(args) > 0: if not compiler.has_multi_arguments(args, state.environment): |