From 9d0c66c7cb36fafa229160a079ce07488a115e82 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 3 Jan 2019 09:33:55 -0600 Subject: Update toolchain comment --- config/toolchain/GCC.cmake | 3 ++- config/toolchain/PGI.cmake | 1 + config/toolchain/intel.cmake | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) 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) -- cgit v0.12