mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 18:27:23 +00:00
843d55de29
The chosen STL libraries are already linked explicitly so we shouldn't let the compiler add its implicit `-lstdc++` (the default) when invoking the linker. Fixes: #17863 NDK-Issue: https://github.com/android-ndk/ndk/issues/105 Inspired-by: Tom Hughes <tomtheengineer@gmail.com>
10 lines
322 B
CMake
10 lines
322 B
CMake
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()
|