summaryrefslogtreecommitdiffstats
path: root/config/toolchain/gcc.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-02-17 22:37:26 (GMT)
committerGitHub <noreply@github.com>2023-02-17 22:37:26 (GMT)
commitbfef9945a88d52ad449b2f871c6d0a80ab94170f (patch)
tree11624aa2bc28f16202cb3f35ec87ec9e73a03067 /config/toolchain/gcc.cmake
parent32a54c0e2e836a9d7818cf6adfd4f0259ae2cb59 (diff)
downloadhdf5-bfef9945a88d52ad449b2f871c6d0a80ab94170f.zip
hdf5-bfef9945a88d52ad449b2f871c6d0a80ab94170f.tar.gz
hdf5-bfef9945a88d52ad449b2f871c6d0a80ab94170f.tar.bz2
Develop toolchain lowercase names and updates (#2426)
* lowercase the toolchain filenames * Change name of option define * Update CI with changed toolchain name * Correct Intel compiler names * Account for Intels name for compiler based on clang * Make icx default and rename classic to icc
Diffstat (limited to 'config/toolchain/gcc.cmake')
-rw-r--r--config/toolchain/gcc.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/toolchain/gcc.cmake b/config/toolchain/gcc.cmake
new file mode 100644
index 0000000..c41d0ca
--- /dev/null
+++ b/config/toolchain/gcc.cmake
@@ -0,0 +1,11 @@
+# Uncomment the following line and the correct system name to use cross-compiling
+#set(CMAKE_SYSTEM_NAME Linux)
+
+set(CMAKE_COMPILER_VENDOR "GCC")
+
+set(CMAKE_C_COMPILER cc)
+set(CMAKE_CXX_COMPILER c++)
+set(CMAKE_Fortran_COMPILER gfortran)
+
+# the following is used if cross-compiling
+set(CMAKE_CROSSCOMPILING_EMULATOR "")