diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-07 14:09:34 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-10 13:36:35 -0700 |
commit | 73d6bde9b6f092aac1317731b3a56f95c5e26a8b (patch) | |
tree | 538d14b7eb73f2d02e3446728a36fcdd4d55b47a | |
parent | 43c1ab0d98ed0930d406101852a97897cb0e1a22 (diff) | |
download | meson-73d6bde9b6f092aac1317731b3a56f95c5e26a8b.zip meson-73d6bde9b6f092aac1317731b3a56f95c5e26a8b.tar.gz meson-73d6bde9b6f092aac1317731b3a56f95c5e26a8b.tar.bz2 |
tests/143: Add xilib check for ICL
-rw-r--r-- | test cases/common/143 C and CPP link/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
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 75281de..a93a981 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 |