mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
20 lines
601 B
CMake
20 lines
601 B
CMake
string(APPEND _ANDROID_ABI_INIT_CFLAGS
|
|
" -funwind-tables"
|
|
" -no-canonical-prefixes"
|
|
)
|
|
|
|
if(CMAKE_ANDROID_NDK AND NOT CMAKE_ANDROID_NDK_DEPRECATED_HEADERS)
|
|
string(APPEND _ANDROID_ABI_INIT_CFLAGS " -D__ANDROID_API__=${CMAKE_SYSTEM_VERSION}")
|
|
endif()
|
|
|
|
if(NOT DEFINED CMAKE_POSITION_INDEPENDENT_CODE
|
|
AND NOT CMAKE_SYSTEM_VERSION VERSION_LESS 16)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
endif()
|
|
|
|
string(APPEND _ANDROID_ABI_INIT_EXE_LDFLAGS " -Wl,--gc-sections")
|
|
|
|
if(NOT _ANDROID_ABI_INIT_EXE_LDFLAGS_NO_nocopyreloc)
|
|
string(APPEND _ANDROID_ABI_INIT_EXE_LDFLAGS " -Wl,-z,nocopyreloc")
|
|
endif()
|