1#------------------------------------------------------------------------------- 2# Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6#------------------------------------------------------------------------------- 7include($ENV{TS_BASE_TOOLCHAIN_FILE} REQUIRED) 8 9set(CMAKE_POSITION_INDEPENDENT_CODE True) 10set(CMAKE_C_VISIBILITY_PRESET hidden) 11set(CMAKE_CXX_VISIBILITY_PRESET hidden) 12 13# Hide symbols from libraries statically linked to the shared library 14add_link_options(-Wl,--exclude-libs,ALL) 15