diff options
author | Brad King <brad.king@kitware.com> | 2015-03-20 16:59:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-20 16:59:54 (GMT) |
commit | 00842df48d8d3585562b8d64d56cd6646dc9d3ff (patch) | |
tree | a011a7cf8df5ac3673b767f4a2b7a719f6cac0ba /Modules/Platform | |
parent | c95e523db87cd503c97ca2a6021614393bb33e0b (diff) | |
download | CMake-00842df48d8d3585562b8d64d56cd6646dc9d3ff.zip CMake-00842df48d8d3585562b8d64d56cd6646dc9d3ff.tar.gz CMake-00842df48d8d3585562b8d64d56cd6646dc9d3ff.tar.bz2 |
PGI: Remove invalid -fPIE flag (#15460)
The PGI compilers on Linux do not have the -fPIE flag. Remove the table
entry added by commit v2.8.9~125^2~2 (Add platform variables for
position independent code flags, 2012-05-05), which likely included it
only as part of a sweeping introduction of such flags.
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/Linux-PGI.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Linux-PGI.cmake b/Modules/Platform/Linux-PGI.cmake index 3cbb35c..baa2248 100644 --- a/Modules/Platform/Linux-PGI.cmake +++ b/Modules/Platform/Linux-PGI.cmake @@ -21,7 +21,7 @@ set(__LINUX_COMPILER_PGI 1) macro(__linux_compiler_pgi lang) # Shared library compile and link flags. set(CMAKE_${lang}_COMPILE_OPTIONS_PIC "-fPIC") - set(CMAKE_${lang}_COMPILE_OPTIONS_PIE "-fPIE") + set(CMAKE_${lang}_COMPILE_OPTIONS_PIE "") set(CMAKE_SHARED_LIBRARY_${lang}_FLAGS "-fPIC") set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "-shared") endmacro() |