No version information available from library (libcrypro.so).

6 views (last 30 days)
When trying to access flash memory of a smartphone using the Android Debug Bridge, it reports the following:
>> !adb
adb: /usr/local/MATLAB/R2014b/bin/glnxa64/libcrypto.so.1.0.0: no version information available (required by adb)
Consequently, trying to pull a file fails. adb invoked from a system shell works fine. Is there a way to use system-wide libraries for such purposes instead of the ones supplied by Matlab?
I'm running R2014b on a Xubuntu-based GNU/Linux-System (14.10). adb is v1.0.31.
Thanks for any comment or ideas.

Accepted Answer

frfrm
frfrm on 23 Apr 2015
Edited: frfrm on 23 Apr 2015
Unsetting LD_LIBRARY_PATH to prevent usage of Matlab-supplied libraries seems to work. I defined a replacement command:
% unset LD_LIBRARY_PATH to prevent usage of matlab's own libs
cmdADB = 'env LD_LIBRARY_PATH='''' adb';

More Answers (0)

Categories

Find more on C Shared Library Integration in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!