ldd is a unix command-line tool to print shared library dependencies for an executable or shared library.
1
vote
0answers
49 views
How can I check a running process to see what shared libraries it is using?
On Linux, I have a C++ application that is using dlopen() to load some shared libraries, but I'm suspicious that the version of the shared library being loaded is not the one I expect because my ...
-2
votes
0answers
21 views
linux ldd command cannot work [migrated]
I am using linux mint13 64bit
now ,when I use
ldd memcached
the error is below:
ldd: ./memcached: No such file or directory
I don't know why.
0
votes
0answers
19 views
Dynamic library not linking on ubuntu
I am using following makefile
SHELL = /bin/sh
CXXFLAGS += -fPIC
TARGET = product_bridge.so
MYPRODUCT = /tmp/product
JAVASDK = /x86.linux/include/
CXXFLAGS += -I$(JAVASDK) -I$(JAVASDK)/linux ...
0
votes
0answers
27 views
Shared library dependency is embedded with path
I have a 3rd-party shared library that I am trying to use on linux x64 (ubuntu 12.04). Something about this library is preventing the runtime linker to find it when I try to execute my program. I used ...
0
votes
0answers
50 views
With ldd -u, the output is “Unused direct dependencies: /lib64/libc.so.6”, but I really use printf()
In Fedora 18, I wrote a file "a.c" like below:
#include <stdio.h>
void main(void)
{
printf("a");
}
and then I compiled it with gcc 4.7.2 : gcc a.c -o a
at last used ldd 2.16: ldd -u ...
0
votes
0answers
128 views
ldd equivalent on android
I have a libTest.so that does not load on some devices. logcat is absolutely useless.
Using arm-linux-androideabi-readelf.exe -d libTest.so I was able to see all required libs that libTest.so needs. I ...
0
votes
1answer
69 views
Does ldd also show dependencies of dependencies?
I have a binary for which ldd shows an unexpected dependency und libicuuc (from "icu").
#ldd A
[...]
libxml2.so.2 => /usr/lib64/libxml2.so.2 (0x00007faaf9722000)
libicuuc.so.49 => ...
0
votes
2answers
73 views
how is lib dependence written into .dynamic section of the ELF executable in static/dynamic link case?
We can use ldd to determine dependence, like:
sjwang@delpe02-179: ldd `which date`
linux-vdso.so.1 => (0x00007fff0f5fd000)
librt.so.1 => /lib64/librt.so.1 (0x00002b2f7ea50000)
...
0
votes
1answer
98 views
Force solib dependency to have relative path of non-standard named shared library under a directory using gcc
I have an issue regarding the linking of a shared library with a non-standard naming convention under several directories. I need the generated executable to search for the shared library within the ...
0
votes
0answers
91 views
ldd lib not found with OpenNI
I've my c++ project to create my own library with OpenNI.
Everything compile and my_library.so is created.
I use and include this library in another project: compiling it i got a lot of undefined ...
0
votes
2answers
123 views
Environment for a Qt Program
I have a Qt executable file.
When this program runs on a Ubuntu 11.04 virtual machine, the GUI is ugly though you can still tell it is the GUI that you want. When it runs on Ubuntu 12.04 of my ...
2
votes
1answer
153 views
Tool for Library Dependency
I'm looking for the tools/commands on Unix platform to detect the library dependencies of the .so and .o files.
I have already used the ldd/nm/truss, but I don't know the proper approach to detect ...
2
votes
1answer
139 views
ldd hex number in parentheses
When executing ldd on a file, it returns a hex number in parentheses vor every library it found.
For example:
root@server> ldd wpa_supplicant
linux-gate.so.1 => (0xb779b000)
...
1
vote
1answer
73 views
Would ldd print all the .so files that one uses when running?
I once saw a binary (say xyz) on Linux, when it is running, i can see it loads a .so file (say abc.so), but when i run "#ldd xyz", the abc.so is not contained in the outputs of the ldd.
can anyone ...
1
vote
2answers
265 views
ldd different output. Same binary different distros
When running the ldd utility to find the shared libs for httpd, I found the following scenario that I just can't explain:
On my Ubuntu box:
...
1
vote
1answer
1k views
How to add shared library search path to a executable file?
I build the ffmpeg with librtmp. My librtmp is at /opt/librtmp/lib. When I execute the ffmpeg, it said:
./ffmpeg: error while loading shared libraries: librtmp.so.0: cannot open shared object file: ...
1
vote
0answers
133 views
On linux with gcc, what can cause ldconfig -v to list a shared object, but ldd not able to find it [closed]
On my raspberry pi, with debian Squeezy, I want to link to the shared objects in /opt/vc/lib. I have added this directory to a file in /etc/ld.so.conf.d/ which is included in /etc/ld.so.conf. The ...
1
vote
1answer
309 views
How to relink libtool-built executables with correct Library Path without install?
A have a project build with GNU autotools. Now I have a tiny change and only want to copy one single library libmylib.so and one program myprog.x (using that library) from the whole collection.
I do ...
2
votes
1answer
389 views
What is the difference between ldd and objdump?
I am running these two commands, and I'm getting different output:
$ ldd `which ls`
linux-gate.so.1 => (0x00db3000)
libselinux.so.1 => /lib/i386-linux-gnu/libselinux.so.1 (0x00ba2000)
...
0
votes
1answer
30 views
How can I get the size of a library/executable's executable code section?
I'm performing an analysis of the executable sizes of various codebases, and I'm looking to get data about how large the executable section of a library or executable is. I know I can sort of get an ...
1
vote
1answer
145 views
monitor linux dynamic library
I would like to monitor(debug) a linux dynamic library. I want to see when and what parameters are passed to it.
The library that I want to monitor X, is being called by another dynamic library Y.
...
1
vote
2answers
4k views
ldd can't find library in LD_LIBRARY_PATH
I'm trying to get a system up and running, and am having problems with the OpenMotif shared libraries. I have their directory in LD_LIBRARY_PATH, but it still can't find them.
Here's an example:
...
3
votes
2answers
270 views
checking shared libraries for non default loaders
ldd is a good simple way to check for shared libraries a given executable is or will be using. However it does not always work as expected. For example, see the following shell snippet that ...
12
votes
1answer
3k views
How to use debug version of libc
Short version of question:
How can I get gdb to use the debugging symbols for libc?
Longer version:
I am debugging a program with gdb and I want to see information about a futex used by libc. ...
0
votes
1answer
63 views
WRT compiling source code on a Mac, what is ldd?
I'm trouble shooting a broken PyV8 install and noticed discussion on an online forum about using ldd, a command / program I've never seen before.
What is it and where do I get it?
Here is the ...
2
votes
1answer
360 views
Why is my Linux application pulling in the wrong .so library?
I have an application I'm building that's using the NetCDF C++ library, and NetCDF is pulling in the HDF-4 libary. However, it's pulling in the wrong HDF-4 library.
Here's how my app is linked:
...
2
votes
0answers
271 views
Using ldd for chroot
I've created very minimal chroot environment on sdb and mounted it on /mnt/sdb. I've also created a symbolic link /mnt/sdb/bin/cc that points to /usr/bin/gcc.
ldd /mnt/sdb/bin/cc returned
...
1
vote
5answers
565 views
Programatically determine shared libraries in use by running application
Is it possible to (and, if so, how does one) determine the shared libraries of an application that are used by an application at runtime? Basically, can I programmatically obtain the the output of ...
0
votes
2answers
896 views
ldd dependencies
I'm compiling 2 shared libraries ("A", "B") under Linux (Ubuntu 11)
The lib "B" is using exported function from lib "A" (linked statically with -lA)
But when I'm running ldd on "B" I just have*
...
9
votes
2answers
1k views
How are shared library dependency paths determined on Linux?
When I run ldd against a shared library such as libphp5.so I see that it has a dependency on libmysqlclient.so.16:
$ ldd ./libphp5.so
libmysqlclient.so.16 => /usr/lib/mysql/libmysqlclient.so.16
...
1
vote
0answers
136 views
boost_system renaming and symlink issues on ldd
I have sample application that uses boost_system shared object. Now, because of certain scenarios, I have to support 2 different boost_system shared objects - one built with gcc and other with sun's ...
0
votes
2answers
566 views
Formats Error (could not find ldd binary)!
I'm using CentOS5 and trying to install a script that requires ldd.
I've tried:
yum install gcc glibc glibc-common
yum update gcc glibc glibc-common
Yum reinstall yum gcc glibc glibc-common
The ...
2
votes
2answers
2k views
How to get a list of paths in /etc/ld.so.conf on Linux
What is the most portable and robust way to get the list of paths, configured by /etc/ld.so.conf and files included from it? Parsing the file manually seems to be not a good idea — the format is ...
2
votes
1answer
1k views
gcc link shared library against symbolic link
I have two libraries, for example two toaster libraries libtoaster_a.so and libtoaster_b.so and all the associated major/minor/rev symlinks eg libtoaster_a.so.1.0.0 etc. Both libraries implement the ...
1
vote
0answers
451 views
link to pcap with pf_ring
I'm trying to use libpcap that was compiled with pf_ring.
I got the sources from ntop, and compiled it.
However, there's something I don't understand (sorry for the newbie linking question):
I wanted ...
1
vote
3answers
8k views
Sunfreeware openssl has duplicate references to libgcc_s.so.1
Any tips how to solve this missing library problem?
In this case I'm using Sunfreeware packages, instead of compiling from source.
$ /usr/local/ssl/bin/openssl version
ld.so.1: openssl: fatal: ...
10
votes
2answers
2k views
cross compiler ldd
I have created a cross compiled arm executable. I want to find the library dependency of the executable. I am using ubuntu natty and installed arm-linux-gnueabi tool chain, which does not contain ldd. ...
0
votes
0answers
3k views
Getting “not a dynamic executable” running “ldd mod_wsgi.o” on CentOS 5.5
I've installed Python 2.7.1 on 64-bit CentOS 5.5 and compiled mod_wsgi against 2.7.1. I'm building a DJango web application and need Python modules from 2.7 (CentOS built-in version of Python is only ...
4
votes
2answers
2k views
Understanding ldd output
How does ldd knows it's depending on libc.so.6 ,not libc.so.5 or libc.so.7?
libc.so.6 => /lib64/libc.so.6 (0x00000034f4000000)
/lib64/ld-linux-x86-64.so.2 (0x00000034f3c00000)
0
votes
1answer
358 views
Java program using JNI cannot find dependant shared objects outside of Eclipse
I have a program that is running inside eclipse right now and uses a JNI call to a shared object I created as a wrapper for another shared object on the system. This works just fine when I run it ...
4
votes
2answers
448 views
linux binary independent of shared libraries
I have a C++ program that depends on quite a few libraries (some common system libraries like libjpeg some personal libraries that are not installed system wide). The Program compiles well on machine ...
9
votes
2answers
5k views
error while loading shared libraries: libboost_system.so.1.45.0: cannot open shared object file: No such file or directory
I am building a C++ executable on Linux. The executable links into some boost libraries.
This is the output when I attempt to run the binary:
...
2
votes
2answers
172 views
Know more about shared libraries of a executable file
Is there a way to know what shared libraries are used from a executable file ?
From DivFix++ for example:
$ file DivFix++
DivFix++: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), ...
0
votes
2answers
560 views
Why shared library is linked by absolute path?
I create an application by linking the libociei.so and libcustome.so
CC -o main main.cpp ../lib/libociei.so ../lib/libcustome.so
and copy libociei.so libcustome.so to /usr/lib
then I use ldd to ...
2
votes
4answers
507 views
Determine which executables link to a specific shared library on Linux
How can I list all executables on my Red Hat Linux system which link to libssl? I can get close with:
find / -type f -perm /a+x -exec ldd {} \; | grep libssl
ldd shows me which libraries the ...
0
votes
1answer
1k views
Tracing linked libraries
I'm getting some errors which make me think that my Linux program isn't linking to the libraries it's supposed to. How can I get the full path to all linked libraries? I know ldd will give me the ...
1
vote
2answers
642 views
Understanding the output of ldd
I'm having a hard time understanding the output of ldd - Especially the processor identifiers.
The string in question is this one:
Shortest.so: ELF 32-bit LSB shared object, Intel 80386, version 1 ...
1
vote
2answers
502 views
ldd output showing shared object file whose function is not called
I ran ldd command on an executable created by Open MPI. It shows a reference to libpthread.so
Using LD_PRELOAD variable I created my own implementation of pthread_create, but from the it output it ...
5
votes
1answer
380 views
ldd shows varied addresses on x86 Linux
I am using ldd to show the dynamic library on Fedora/x86, and it shows different results each time it is used.
Is that expected? Or is there an explanation?
I remember it shows a fixed result on ...
20
votes
5answers
9k views