aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-07 13:47:58 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-10 13:36:35 -0700
commit86a8bf11482c9d5cc70be2b957520c2361cb34d2 (patch)
tree070665b7d964b7e75d467e987fc3ea7cd9a2f486
parentc91e779d8b609cc5228df7304062641d48a93744 (diff)
downloadmeson-86a8bf11482c9d5cc70be2b957520c2361cb34d2.zip
meson-86a8bf11482c9d5cc70be2b957520c2361cb34d2.tar.gz
meson-86a8bf11482c9d5cc70be2b957520c2361cb34d2.tar.bz2
tests/124: ICL alos does not use ASM
-rw-r--r--test cases/common/124 cpp and asm/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/124 cpp and asm/meson.build b/test cases/common/124 cpp and asm/meson.build
index f097084..cf064d0 100644
--- a/test cases/common/124 cpp and asm/meson.build
+++ b/test cases/common/124 cpp and asm/meson.build
@@ -15,7 +15,7 @@ endif
sources = ['trivial.cc']
# If the compiler cannot compile assembly, don't use it
-if not ['msvc', 'clang-cl'].contains(meson.get_compiler('cpp').get_id())
+if not ['msvc', 'clang-cl', 'intel-cl'].contains(meson.get_compiler('cpp').get_id())
sources += ['retval-' + cpu + '.S']
cpp_args = ['-DUSE_ASM']
message('Using ASM')