summaryrefslogtreecommitdiffstats
path: root/config/toolchain
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-02-16 13:41:25 (GMT)
committerGitHub <noreply@github.com>2023-02-16 13:41:25 (GMT)
commit63fa76cc846e88630f50393328d332b15278448a (patch)
tree4dd1e32e3579e72a059221be687ea49f319641cf /config/toolchain
parent5a0ec52099cf02224a4066b158bcf1a34829db20 (diff)
downloadhdf5-63fa76cc846e88630f50393328d332b15278448a.zip
hdf5-63fa76cc846e88630f50393328d332b15278448a.tar.gz
hdf5-63fa76cc846e88630f50393328d332b15278448a.tar.bz2
Merge toolchain lowercase names and updates #2426 (#2469)
Diffstat (limited to 'config/toolchain')
-rw-r--r--config/toolchain/ icc.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/toolchain/ icc.cmake b/config/toolchain/ icc.cmake
new file mode 100644
index 0000000..97f6a64
--- /dev/null
+++ b/config/toolchain/ icc.cmake
@@ -0,0 +1,11 @@
+# Uncomment the following to use cross-compiling
+#set(CMAKE_SYSTEM_NAME Linux)
+
+set(CMAKE_COMPILER_VENDOR "intel")
+
+set(CMAKE_C_COMPILER icc)
+set(CMAKE_CXX_COMPILER icpc)
+set(CMAKE_Fortran_COMPILER ifort)
+
+# the following is used if cross-compiling
+set(CMAKE_CROSSCOMPILING_EMULATOR "")