summaryrefslogtreecommitdiffstats
path: root/config/toolchain/intel.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-02-17 22:37:48 (GMT)
committerGitHub <noreply@github.com>2023-02-17 22:37:48 (GMT)
commit79ed1cc15f0926a577bd8da96fc551dfea5e8c40 (patch)
tree2c06ea4d335ff8cb7e7552f1ef12675518bf172d /config/toolchain/intel.cmake
parent593484fa0ee30e42a7b735e6a08744b736885d11 (diff)
downloadhdf5-79ed1cc15f0926a577bd8da96fc551dfea5e8c40.zip
hdf5-79ed1cc15f0926a577bd8da96fc551dfea5e8c40.tar.gz
hdf5-79ed1cc15f0926a577bd8da96fc551dfea5e8c40.tar.bz2
Merge toolchain lowercase names and updates #2426 (#2468)
Diffstat (limited to 'config/toolchain/intel.cmake')
-rw-r--r--config/toolchain/intel.cmake13
1 files changed, 3 insertions, 10 deletions
diff --git a/config/toolchain/intel.cmake b/config/toolchain/intel.cmake
index ae1d2f8..f8f60b2 100644
--- a/config/toolchain/intel.cmake
+++ b/config/toolchain/intel.cmake
@@ -3,16 +3,9 @@
set(CMAKE_COMPILER_VENDOR "intel")
-if(USE_SANITIZER)
- set(CMAKE_C_COMPILER icl)
- set(CMAKE_CXX_COMPILER icl++)
- set(CMAKE_Fortran_COMPILER ifort)
- set(INTEL_CLANG ON)
-else ()
- set(CMAKE_C_COMPILER icc)
- set(CMAKE_CXX_COMPILER icpc)
- set(CMAKE_Fortran_COMPILER ifort)
-endif ()
+set(CMAKE_C_COMPILER icx)
+set(CMAKE_CXX_COMPILER icpx)
+set(CMAKE_Fortran_COMPILER ifx)
# the following is used if cross-compiling
set(CMAKE_CROSSCOMPILING_EMULATOR "")