How do i get all the shared libs that my app needs?
General and Desktop
3
Posts
2
Posters
950
Views
2
Watching
-
If you have the names, then you know what to copy... Or you can design a small script which parses the output of ldd and performs the needed cp. But remember that on linux having all the libs in the same directory as the executable doesn't mean you're OK. If you do so you'll have to set LD_LIBRARY_PATH.
-
If you have the names, then you know what to copy... Or you can design a small script which parses the output of ldd and performs the needed cp. But remember that on linux having all the libs in the same directory as the executable doesn't mean you're OK. If you do so you'll have to set LD_LIBRARY_PATH.