diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-01-02 20:39:31 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-01-02 20:39:38 (GMT) |
commit | eaaddcc9e5d9b717f4ae0ac4ee8dc6aa28fab133 (patch) | |
tree | 857319ea4d4b99c7108bcc58a22d10a268572a1a | |
parent | c820502e69b8c3222bbf1162d21820bebcf71202 (diff) | |
download | hdf5-eaaddcc9e5d9b717f4ae0ac4ee8dc6aa28fab133.zip hdf5-eaaddcc9e5d9b717f4ae0ac4ee8dc6aa28fab133.tar.gz hdf5-eaaddcc9e5d9b717f4ae0ac4ee8dc6aa28fab133.tar.bz2 |
Add PGI toolchain
-rw-r--r-- | MANIFEST | 1 | ||||
-rw-r--r-- | config/toolchain/PGI.cmake | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -3192,6 +3192,7 @@ ./config/toolchain/crayle.cmake ./config/toolchain/GCC.cmake ./config/toolchain/intel.cmake +./config/toolchain/PGI.cmake ./config/cmake/cacheinit.cmake ./config/cmake/CMakeFindJavaCommon.cmake diff --git a/config/toolchain/PGI.cmake b/config/toolchain/PGI.cmake new file mode 100644 index 0000000..9710d22 --- /dev/null +++ b/config/toolchain/PGI.cmake @@ -0,0 +1,10 @@ +# 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 "") |