diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-03 13:55:01 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-13 11:22:31 -0700 |
commit | f5ea341319552e84124f10d8306b4b10f89d72ad (patch) | |
tree | 4f92a565e5940a60e5f6abb648f35951cba4101c /run_project_tests.py | |
parent | fa54f05f09da9b1878d51f35535e54e0222c4f1e (diff) | |
download | meson-f5ea341319552e84124f10d8306b4b10f89d72ad.zip meson-f5ea341319552e84124f10d8306b4b10f89d72ad.tar.gz meson-f5ea341319552e84124f10d8306b4b10f89d72ad.tar.bz2 |
compilers/clike: ICL needs msvc workarounds in has_function
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index b9077c9..02ceb04 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -120,7 +120,7 @@ def get_relative_files_list_from_dir(fromdir): def platform_fix_name(fname, compiler, env): # canonicalize compiler - if compiler == 'clang-cl': + if compiler in {'clang-cl', 'intel-cl'}: canonical_compiler = 'msvc' else: canonical_compiler = compiler |