CurlSymbolHiding.cmake 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. include(CheckCSourceCompiles)
  25. option(CURL_HIDDEN_SYMBOLS "Set to ON to hide libcurl internal symbols (=hide all symbols that aren't officially external)." ON)
  26. mark_as_advanced(CURL_HIDDEN_SYMBOLS)
  27. if(WIN32 AND (ENABLE_DEBUG OR ENABLE_CURLDEBUG))
  28. # We need to export internal debug functions,
  29. # e.g. curl_easy_perform_ev() or curl_dbg_*(),
  30. # so disable symbol hiding for debug builds and for memory tracking.
  31. set(CURL_HIDDEN_SYMBOLS OFF)
  32. endif()
  33. if(CURL_HIDDEN_SYMBOLS)
  34. set(SUPPORTS_SYMBOL_HIDING FALSE)
  35. if(CMAKE_C_COMPILER_ID MATCHES "Clang" AND NOT MSVC)
  36. set(SUPPORTS_SYMBOL_HIDING TRUE)
  37. set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
  38. set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  39. elseif(CMAKE_COMPILER_IS_GNUCC)
  40. if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4)
  41. # note: this is considered buggy prior to 4.0 but the autotools don't care, so let's ignore that fact
  42. set(SUPPORTS_SYMBOL_HIDING TRUE)
  43. set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
  44. set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  45. endif()
  46. elseif(CMAKE_C_COMPILER_ID MATCHES "SunPro" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 8.0)
  47. set(SUPPORTS_SYMBOL_HIDING TRUE)
  48. set(_SYMBOL_EXTERN "__global")
  49. set(_CFLAG_SYMBOLS_HIDE "-xldscope=hidden")
  50. elseif(CMAKE_C_COMPILER_ID MATCHES "Intel" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 9.0)
  51. # note: this should probably just check for version 9.1.045 but I'm not 100% sure
  52. # so let's do it the same way autotools do.
  53. set(SUPPORTS_SYMBOL_HIDING TRUE)
  54. set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
  55. set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  56. check_c_source_compiles("#include <stdio.h>
  57. int main (void) { printf(\"icc fvisibility bug test\"); return 0; }" _no_bug)
  58. if(NOT _no_bug)
  59. set(SUPPORTS_SYMBOL_HIDING FALSE)
  60. set(_SYMBOL_EXTERN "")
  61. set(_CFLAG_SYMBOLS_HIDE "")
  62. endif()
  63. elseif(MSVC)
  64. set(SUPPORTS_SYMBOL_HIDING TRUE)
  65. endif()
  66. set(HIDES_CURL_PRIVATE_SYMBOLS ${SUPPORTS_SYMBOL_HIDING})
  67. elseif(MSVC)
  68. if(NOT CMAKE_VERSION VERSION_LESS 3.7)
  69. set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) #present since 3.4.3 but broken
  70. set(HIDES_CURL_PRIVATE_SYMBOLS FALSE)
  71. else()
  72. message(WARNING "Hiding private symbols regardless CURL_HIDDEN_SYMBOLS being disabled.")
  73. set(HIDES_CURL_PRIVATE_SYMBOLS TRUE)
  74. endif()
  75. else()
  76. set(HIDES_CURL_PRIVATE_SYMBOLS FALSE)
  77. endif()
  78. set(CURL_CFLAG_SYMBOLS_HIDE ${_CFLAG_SYMBOLS_HIDE})
  79. set(CURL_EXTERN_SYMBOL ${_SYMBOL_EXTERN})