summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Android-GNU-CXX.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-04-03 15:31:59 (GMT)
committerBrad King <brad.king@kitware.com>2018-04-03 18:34:57 (GMT)
commit843d55de295b0eeca2a028badde3b2f9a409cc72 (patch)
tree3ef22b1de380da49007e6fd5eb7684f51386868a /Modules/Platform/Android-GNU-CXX.cmake
parent12e6796b6289dbc910b9b7fe57f6b564edbc46dd (diff)
downloadCMake-843d55de295b0eeca2a028badde3b2f9a409cc72.zip
CMake-843d55de295b0eeca2a028badde3b2f9a409cc72.tar.gz
CMake-843d55de295b0eeca2a028badde3b2f9a409cc72.tar.bz2
Android: Suppress implicit -lstdc++ linker flag
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>
Diffstat (limited to 'Modules/Platform/Android-GNU-CXX.cmake')
-rw-r--r--Modules/Platform/Android-GNU-CXX.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Platform/Android-GNU-CXX.cmake b/Modules/Platform/Android-GNU-CXX.cmake
index 41279d1..d30d0ff 100644
--- a/Modules/Platform/Android-GNU-CXX.cmake
+++ b/Modules/Platform/Android-GNU-CXX.cmake
@@ -1,2 +1,5 @@
include(Platform/Android-GNU)
__android_compiler_gnu(CXX)
+if(_ANDROID_STL_NOSTDLIBXX)
+ string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " -nodefaultlibs -lgcc -lc -lm -ldl")
+endif()