Chaoren Lin schrieb am Do., 2. Juni 2016 um 19:45 Uhr:
Could you please make sure that these SDK components are installed and up to date?
SDK Tools -> CMake
SDK Tools -> LLDB 2.2
SDK Tools -> NDK
They are all installed. I guess the root cause is a missing dependency on libssl.so.1.0.0. This is what I get when I launch the bundled cmake binary:
[fex@yerbouti ~]$ /home/fex/tools/android-sdk/cmake/bin/cmake --help
/home/fex/tools/android-sdk/cmake/bin/cmake: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object fqile: No such file or directory
But it's not only libssl.so.1.0.0 that's missing, as libcrypto.so.1.0.0 is missing, too:
[fex@yerbouti ~]$ ldd /home/fex/tools/android-sdk/cmake/bin/cmake
linux-vdso.so.1 (0x00007ffc8073a000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f847c255000)
libssl.so.1.0.0 => not found
libcrypto.so.1.0.0 => not found
libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f847bed2000)
libm.so.6 => /lib64/libm.so.6 (0x00007f847bbd0000)
libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f847b9b8000)
libc.so.6 => /lib64/libc.so.6 (0x00007f847b5f7000)
/lib64/ld-linux-x86-64.so.2 (0x000055b0df0ff000)
I'm on Fedora 23 x86_64. The library versions installed are these:
[fex@yerbouti ~]$ ls /lib/libssl*
/lib/libssl3.so /lib/libssl.so.10 /lib/libssl.so.1.0.2h
[fex@yerbouti ~]$ ls /lib64/libssl*
/lib64/libssl3.so /lib64/libssl.so /lib64/libssl.so.10 /lib64/libssl.so.1.0.2h
So, do I need to file a bug report for this? Is it enough to have it mentioned here?