Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

confusing unresolved library dependencies in .deb package #1450

Closed
qtlin opened this issue Mar 11, 2018 · 1 comment
Closed

confusing unresolved library dependencies in .deb package #1450

qtlin opened this issue Mar 11, 2018 · 1 comment

Comments

@qtlin
Copy link

qtlin commented Mar 11, 2018

Install Bisq-64bit-0.6.7.deb on Ubuntu 16.04 and examine supplied libraries:

adminuser@adminuser-VirtualBox:~$ export LD_LIBRARY_PATH=/opt/Bisq/runtime/lib/amd64:/opt/Bisq/runtime/lib/amd64/server ; find /opt/Bisq -name \*.so* | while read LIB; do if ldd $LIB | grep -q not\ found;then echo $LIB;fi;done | sort -u
/opt/Bisq/runtime/lib/amd64/libavplugin-53.so
/opt/Bisq/runtime/lib/amd64/libavplugin-54.so
/opt/Bisq/runtime/lib/amd64/libavplugin-55.so
/opt/Bisq/runtime/lib/amd64/libavplugin-56.so

please don't include libraries with unresolved dependencies.
Here is the list of missing dependencies, some of them don't even exist in Ubuntu at all.

adminuser@adminuser-VirtualBox:~$ export LD_LIBRARY_PATH=/opt/Bisq/runtime/lib/amd64:/opt/Bisq/runtime/lib/amd64/server ; find /opt/Bisq -name \*.so* | while read LIB; do if ldd $LIB | grep -q not\ found;then echo $LIB;fi;done | sort -u | xargs -l1 ldd | grep not\ found | sort -u
	libavcodec.so.53 => not found
	libavcodec.so.54 => not found
	libavcodec.so.55 => not found
	libavcodec.so.56 => not found
	libavformat.so.53 => not found
	libavformat.so.54 => not found
	libavformat.so.55 => not found
	libavformat.so.56 => not found
@ManfredKarrer
Copy link
Member

ManfredKarrer commented Sep 25, 2018

Close as we changed build system to mono-repo and Java 10 that issue is probably not relevant anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants