From 73d6bde9b6f092aac1317731b3a56f95c5e26a8b Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 7 May 2019 14:09:34 -0700 Subject: [PATCH] tests/143: Add xilib check for ICL --- test cases/common/143 C and CPP link/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test cases/common/143 C and CPP link/meson.build b/test cases/common/143 C and CPP link/meson.build index 75281de62..a93a981b4 100644 --- a/test cases/common/143 C and CPP link/meson.build +++ b/test cases/common/143 C and CPP link/meson.build @@ -30,6 +30,8 @@ if cxx.get_argument_syntax() == 'msvc' static_linker = find_program('lib') elif cxx.get_id() == 'clang-cl' static_linker = find_program('llvm-lib') + elif cxx.get_id() == 'intel-cl' + static_linker = find_program('xilib') else error('unable to determine static linker to use with this compiler') endif