diff options
author | Aaron Liu <hualilia@ca.ibm.com> | 2021-12-02 15:34:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-01-27 14:38:01 (GMT) |
commit | 6da99e671c59a5b5b4731020cc286bb873a8134e (patch) | |
tree | 72cf89744dd3bfcb047fc50c6de41533c59833f6 /Tests/RunCMake/FileAPI | |
parent | 28e90f9576fa5784408c03cf20bf172b20e418f0 (diff) | |
download | CMake-6da99e671c59a5b5b4731020cc286bb873a8134e.zip CMake-6da99e671c59a5b5b4731020cc286bb873a8134e.tar.gz CMake-6da99e671c59a5b5b4731020cc286bb873a8134e.tar.bz2 |
IBMClang: Add support for IBM Open XL C/C++
Fixes: #22929
Diffstat (limited to 'Tests/RunCMake/FileAPI')
-rw-r--r-- | Tests/RunCMake/FileAPI/codemodel-v2-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/FileAPI/codemodel-v2-check.py b/Tests/RunCMake/FileAPI/codemodel-v2-check.py index b31088d..d5f596e 100644 --- a/Tests/RunCMake/FileAPI/codemodel-v2-check.py +++ b/Tests/RunCMake/FileAPI/codemodel-v2-check.py @@ -760,7 +760,7 @@ def gen_check_targets(c, g, inSource): read_codemodel_json_data("targets/c_headers_2.json"), ] - if cxx_compiler_id in ['Clang', 'AppleClang', 'LCC', 'GNU', 'Intel', 'IntelLLVM', 'MSVC', 'Embarcadero'] and g["name"] != "Xcode": + if cxx_compiler_id in ['Clang', 'AppleClang', 'LCC', 'GNU', 'Intel', 'IntelLLVM', 'MSVC', 'Embarcadero', 'IBMClang'] and g["name"] != "Xcode": for e in expected: if e["name"] == "cxx_exe": if matches(g["name"], "^(Visual Studio |Ninja Multi-Config)"): |