25 Jul 2008 at 10:49 #1 RimBlock RimBlock Associate Joined 10 Nov 2004 Posts 2,237 Location Expat in Singapore Hi, I have a program I have compiled from source. How can I find out the dependencies required to run the binary on a 'clean' system so I can include them in the installation package ? Thanks RB
Hi, I have a program I have compiled from source. How can I find out the dependencies required to run the binary on a 'clean' system so I can include them in the installation package ? Thanks RB
25 Jul 2008 at 10:52 #2 tntcoder tntcoder Soldato Joined 7 Apr 2004 Posts 4,212 ldd [OPTION]... FILE... Will print the shared libraries required by the file.
28 Jul 2008 at 03:57 #3 RimBlock RimBlock Associate OP Joined 10 Nov 2004 Posts 2,237 Location Expat in Singapore Thanks for that. Just what I needed. RB