diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-02-07 10:50:08 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-02-07 10:50:08 (GMT) |
commit | b7f58511cf050b8976445694446c695c9d230b8b (patch) | |
tree | 24a8878711fbab484d284b0290b295d75211af2f /Modules/Platform | |
parent | 5f7d7bdd67d0b00b726161b235d3719ba4f33d05 (diff) | |
download | CMake-b7f58511cf050b8976445694446c695c9d230b8b.zip CMake-b7f58511cf050b8976445694446c695c9d230b8b.tar.gz CMake-b7f58511cf050b8976445694446c695c9d230b8b.tar.bz2 |
Visibility: the Intel compiler does not support -fvisibility on windows
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/Darwin-icc.cmake | 6 | ||||
-rw-r--r-- | Modules/Platform/Linux-Intel.cmake | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Modules/Platform/Darwin-icc.cmake b/Modules/Platform/Darwin-icc.cmake index 0fab9a1..c7e31c0 100644 --- a/Modules/Platform/Darwin-icc.cmake +++ b/Modules/Platform/Darwin-icc.cmake @@ -75,6 +75,12 @@ if(XCODE) set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX) endif() +if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 12.0) + set(CMAKE_C_COMPILE_OPTIONS_VISIBILITY "-fvisibility=") + set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY "-fvisibility=") +endif() + + set(CMAKE_MacOSX_Content_COMPILE_OBJECT "\"${CMAKE_COMMAND}\" -E copy_if_different <SOURCE> <OBJECT>") set(CMAKE_C_CREATE_SHARED_LIBRARY diff --git a/Modules/Platform/Linux-Intel.cmake b/Modules/Platform/Linux-Intel.cmake index 2394f10..20fddb4 100644 --- a/Modules/Platform/Linux-Intel.cmake +++ b/Modules/Platform/Linux-Intel.cmake @@ -47,4 +47,8 @@ macro(__linux_compiler_intel lang) "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " "${XIAR} -s <TARGET> ") endif() + + if(NOT CMAKE_${lang}_COMPILER_VERSION VERSION_LESS 12.0) + set(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY "-fvisibility=") + endif() endmacro() |