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

Use external libraries within conty #43

Closed
gipi942 opened this issue Jan 26, 2022 · 1 comment
Closed

Use external libraries within conty #43

gipi942 opened this issue Jan 26, 2022 · 1 comment

Comments

@gipi942
Copy link

gipi942 commented Jan 26, 2022

I am trying to use a 32bit application which requires one of its libraries pasted into /usr/lib, but as conty uses its own libraries, this makes the application unusable (conty does not have this lib). How can I tell conty to access this library, alongside its own, or how can I add this library to conty?

@Kron4ek
Copy link
Owner

Kron4ek commented Jan 26, 2022

You can specify the path to your library (or libraries) using the LD_LIBRARY_PATH env variable. Let's say you put a library into /home/user/libs, in that case run Conty like this:

./conty.sh env LD_LIBRARY_PATH="/home/user/libs" ./application_binary

or

export LD_LIBRARY_PATH="/home/user/libs"
./conty.sh ./application_binary

@gipi942 gipi942 closed this as completed Feb 4, 2022
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