diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-01-03 15:33:55 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-01-03 15:33:55 (GMT) |
commit | 9d0c66c7cb36fafa229160a079ce07488a115e82 (patch) | |
tree | 5b8a8b852ab8634d9602615ea4160271ad07a07d /config/toolchain | |
parent | 6f6d0921c0592c202bae15dab1b05c921aef0043 (diff) | |
download | hdf5-9d0c66c7cb36fafa229160a079ce07488a115e82.zip hdf5-9d0c66c7cb36fafa229160a079ce07488a115e82.tar.gz hdf5-9d0c66c7cb36fafa229160a079ce07488a115e82.tar.bz2 |
Update toolchain comment
Diffstat (limited to 'config/toolchain')
-rw-r--r-- | config/toolchain/GCC.cmake | 3 | ||||
-rw-r--r-- | config/toolchain/PGI.cmake | 1 | ||||
-rw-r--r-- | config/toolchain/intel.cmake | 1 |
3 files changed, 4 insertions, 1 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 index 9710d22..ec58cbb 100644 --- a/config/toolchain/PGI.cmake +++ b/config/toolchain/PGI.cmake @@ -1,5 +1,6 @@ # Uncomment the following to use cross-compiling #set(CMAKE_SYSTEM_NAME Linux) + set(CMAKE_COMPILER_VENDOR "PGI") set(CMAKE_C_COMPILER pgcc) 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) |