You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/Modules/Platform/Android-Clang-CXX.cmake

10 lines
322 B

include(Platform/Android-Clang)
__android_compiler_clang(CXX)
if(_ANDROID_STL_NOSTDLIBXX)
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 6)
string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " -nostdlib++")
else()
string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " -nodefaultlibs -lgcc -lc -lm -ldl")
endif()
endif()