summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/PGI.cmake
diff options
context:
space:
mode:
authorChristian Pfeiffer <cpfeiffer@live.de>2017-05-12 17:07:35 (GMT)
committerChristian Pfeiffer <cpfeiffer@live.de>2017-05-20 18:02:51 (GMT)
commita94ae96e6e1b8ef4e169c7c23cf95e0894e648cb (patch)
treec41ba8caa4c3ee495c678c01a430d0e5d5edc60e /Modules/Compiler/PGI.cmake
parentc2c2d366198118a807fe6bf1820a32c13a6648ad (diff)
downloadCMake-a94ae96e6e1b8ef4e169c7c23cf95e0894e648cb.zip
CMake-a94ae96e6e1b8ef4e169c7c23cf95e0894e648cb.tar.gz
CMake-a94ae96e6e1b8ef4e169c7c23cf95e0894e648cb.tar.bz2
Windows-PGI: Adapt default compiler flags
PGI demands -Bdynamic (/MD equivalent) for linking together dynamic libraries, so we should make it our default mirroring the settings of e.g. Visual C++ and Intel C++.
Diffstat (limited to 'Modules/Compiler/PGI.cmake')
-rw-r--r--Modules/Compiler/PGI.cmake10
1 files changed, 9 insertions, 1 deletions
diff --git a/Modules/Compiler/PGI.cmake b/Modules/Compiler/PGI.cmake
index bdabeba..0cbfd8a 100644
--- a/Modules/Compiler/PGI.cmake
+++ b/Modules/Compiler/PGI.cmake
@@ -18,9 +18,17 @@ macro(__compiler_pgi lang)
string(APPEND CMAKE_${lang}_FLAGS_INIT " ")
string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -g -O0")
string(APPEND CMAKE_${lang}_FLAGS_MINSIZEREL_INIT " -O2 -s")
- string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -fast -O3 -Mipa=fast")
+ string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -fast -O3")
+ # -Mipa was dropped with PGI 16.3 from Windows versions
+ if(NOT CMAKE_HOST_WIN32 OR CMAKE_${lang}_COMPILER_VERSION VERSION_LESS 16.3)
+ string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -Mipa=fast")
+ endif()
string(APPEND CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT " -O2 -gopt")
+ if(CMAKE_HOST_WIN32)
+ string(APPEND CMAKE_${lang}_FLAGS_INIT " -Bdynamic")
+ endif()
+
# Preprocessing and assembly rules.
set(CMAKE_${lang}_CREATE_PREPROCESSED_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
set(CMAKE_${lang}_CREATE_ASSEMBLY_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")