diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-01-07 21:45:25 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-01-07 21:45:25 (GMT) |
commit | d378fad6ea48956e0315efa7c6bb11d444e55ca0 (patch) | |
tree | 9e6a55bc66ceb72cfb129004f7490c6b2b72201e /config/toolchain | |
parent | 46af130aae5dcf31393a4459f96105bfeaeccecc (diff) | |
parent | f7d530dd275e176e59b26c1b7363ba16b3ab6c9c (diff) | |
download | hdf5-d378fad6ea48956e0315efa7c6bb11d444e55ca0.zip hdf5-d378fad6ea48956e0315efa7c6bb11d444e55ca0.tar.gz hdf5-d378fad6ea48956e0315efa7c6bb11d444e55ca0.tar.bz2 |
Merge pull request #1447 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit 'f7d530dd275e176e59b26c1b7363ba16b3ab6c9c':
HDFFV-10674, 10664, 10674
Diffstat (limited to 'config/toolchain')
-rw-r--r-- | config/toolchain/GCC.cmake | 3 | ||||
-rw-r--r-- | config/toolchain/PGI.cmake | 11 | ||||
-rw-r--r-- | config/toolchain/crayle.cmake | 3 | ||||
-rw-r--r-- | config/toolchain/intel.cmake | 1 |
4 files changed, 16 insertions, 2 deletions
diff --git a/config/toolchain/GCC.cmake b/config/toolchain/GCC.cmake index ddb1641..c41d0ca 100644 --- a/config/toolchain/GCC.cmake +++ b/config/toolchain/GCC.cmake @@ -1,5 +1,6 @@ -# Uncomment the following to use cross-compiling +# 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) diff --git a/config/toolchain/PGI.cmake b/config/toolchain/PGI.cmake new file mode 100644 index 0000000..ec58cbb --- /dev/null +++ b/config/toolchain/PGI.cmake @@ -0,0 +1,11 @@ +# Uncomment the following to use cross-compiling +#set(CMAKE_SYSTEM_NAME Linux) + +set(CMAKE_COMPILER_VENDOR "PGI") + +set(CMAKE_C_COMPILER pgcc) +set(CMAKE_CXX_COMPILER pgc++) +set(CMAKE_Fortran_COMPILER pgf90) + +# the following is used if cross-compiling +set(CMAKE_CROSSCOMPILING_EMULATOR "") diff --git a/config/toolchain/crayle.cmake b/config/toolchain/crayle.cmake index a83147b..47d8afc 100644 --- a/config/toolchain/crayle.cmake +++ b/config/toolchain/crayle.cmake @@ -1,5 +1,6 @@ -# Uncomment the following to use cross-compiling +# The following line will use cross-compiling set(CMAKE_SYSTEM_NAME Linux) + set(CMAKE_COMPILER_VENDOR "CrayLinuxEnvironment") set(CMAKE_C_COMPILER cc) diff --git a/config/toolchain/intel.cmake b/config/toolchain/intel.cmake index f1a5734..97f6a64 100644 --- a/config/toolchain/intel.cmake +++ b/config/toolchain/intel.cmake @@ -1,5 +1,6 @@ # Uncomment the following to use cross-compiling #set(CMAKE_SYSTEM_NAME Linux) + set(CMAKE_COMPILER_VENDOR "intel") set(CMAKE_C_COMPILER icc) |