CurlSymbolHiding.cmake 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. option(CURL_HIDDEN_SYMBOLS "Hide libcurl internal symbols (=hide all symbols that are not officially external)" ON)
  25. mark_as_advanced(CURL_HIDDEN_SYMBOLS)
  26. if(WIN32 AND (ENABLE_DEBUG OR ENABLE_CURLDEBUG))
  27. # We need to export internal debug functions,
  28. # e.g. curl_easy_perform_ev() or curl_dbg_*(),
  29. # so disable symbol hiding for debug builds and for memory tracking.
  30. set(CURL_HIDDEN_SYMBOLS OFF)
  31. endif()
  32. set(CURL_HIDES_PRIVATE_SYMBOLS FALSE)
  33. unset(CURL_EXTERN_SYMBOL)
  34. unset(CURL_CFLAG_SYMBOLS_HIDE)
  35. if(CURL_HIDDEN_SYMBOLS)
  36. if(CMAKE_C_COMPILER_ID MATCHES "Clang" AND NOT MSVC)
  37. set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
  38. set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
  39. set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  40. elseif(CMAKE_COMPILER_IS_GNUCC)
  41. if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4)
  42. # Note: This is considered buggy prior to 4.0 but the autotools do not care, so let us ignore that fact
  43. set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
  44. set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
  45. set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  46. endif()
  47. elseif(CMAKE_C_COMPILER_ID MATCHES "SunPro" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 8.0)
  48. set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
  49. set(CURL_EXTERN_SYMBOL "__global")
  50. set(CURL_CFLAG_SYMBOLS_HIDE "-xldscope=hidden")
  51. elseif(CMAKE_C_COMPILER_ID MATCHES "Intel" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 9.0) # Requires 9.1.045
  52. set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
  53. set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
  54. set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
  55. elseif(MSVC)
  56. set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
  57. endif()
  58. else()
  59. if(MSVC)
  60. # Note: This option is prone to export non-curl extra symbols.
  61. set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
  62. endif()
  63. endif()