diff options
| author | Brad King <brad.king@kitware.com> | 2016-10-21 08:23:38 -0400 |
|---|---|---|
| committer | Brad King <brad.king@kitware.com> | 2016-10-21 08:42:25 -0400 |
| commit | 43f4326ece5035a5a028a7bb90a67c193804c997 (patch) | |
| tree | 09eeeb57da312a78c7b410365e28142b3e33502c /Tests/RunCMake/Android | |
| parent | a0c539b5460da283433976053ea181f07fcea32e (diff) | |
| download | cmake-43f4326ece5035a5a028a7bb90a67c193804c997.tar.gz | |
Android: Fix support for armeabi with c++_static
Add missing "unwind" and "atomic" libraries needed for this combination.
See `${ndk}/sources/cxx-stl/llvm-libc++/libs/armeabi/libc++.a` for the
libraries the NDK uses.
Issue: #16380
Diffstat (limited to 'Tests/RunCMake/Android')
| -rw-r--r-- | Tests/RunCMake/Android/RunCMakeTest.cmake | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Tests/RunCMake/Android/RunCMakeTest.cmake b/Tests/RunCMake/Android/RunCMakeTest.cmake index 39b77cd0a6..86a9896231 100644 --- a/Tests/RunCMake/Android/RunCMakeTest.cmake +++ b/Tests/RunCMake/Android/RunCMakeTest.cmake @@ -174,11 +174,6 @@ foreach(ndk IN LISTS TEST_ANDROID_NDK) continue() endif() - # Skip combinations that seem to be broken. - if("${stl};${abi}" MATCHES [[^c\+\+_static;armeabi]]) - continue() - endif() - # Run the tests for this combination. if("${abi}" STREQUAL "armeabi") run_Android(ndk-armeabi-thumb) # default: -DCMAKE_ANDROID_ARCH_ABI=armeabi -DCMAKE_ANDROID_ARM_MODE=0 |
