What is the CMake equivalent to "gcc -fvisibility=hidden" when controlling the exported symbol of a shared library?

sailing picture sailing · Jun 13, 2013 · Viewed 19k times · Source

I developed cross platform software in c++. As I know, Linux .so exported all the symbols by default, well through "gcc -fvisibility=hidden" I can set all the exported symbols as hidden, then set __attribute__(visibility("default")) for the class and function I want to export, so I can control what I want to export.

My question is, using CMake, how can I do the work as "gcc -fvisibility=hidden" control?

Answer

Joe picture Joe · Jul 1, 2015

Instead of setting compiler flags directly, you should be using a current CMake version and the <LANG>_VISIBILITY_PRESET properties instead. This way you can avoid compiler specifics in your CMakeLists and improve cross platform applicability (avoiding errors such as supporting GCC and not Clang).

I.e., if you are using C++ you would either call set(CMAKE_CXX_VISIBILITY_PRESET hidden) to set the property globally, or set_target_properties(MyTarget PROPERTIES CXX_VISIBILITY_PRESET hidden) to limit the setting to a specific library or executable target. If you are using C just replace CXX by C in the aforementioned commands. You may also want to investigate the VISIBLITY_INLINES_HIDDEN property as well.

The documentation for GENERATE_EXPORT_HEADER includes some more tips and examples related to both properties.