大约有 34 项符合查询结果(耗时:0.0248秒) [XML]
您是不是要找:
How to show all shared libraries used by executables in Linux?
...
Use ldd to list shared libraries for each executable.
Cleanup the output
Sort, compute counts, sort by count
To find the answer for all executables in the "/bin" directory:
find /bin -type f -perm /a+x -exec ldd {} \; \
| grep...
Determine direct shared object dependencies of a Linux binary?
...
This is great. Unlike ldd, readelf can inspect a cross-platform binary (i.e. inspect an ARM executable from x86-64 linux.)
– Robert Calhoun
Oct 21 '14 at 14:07
...
How to check for DLL dependency?
...n, I've switched from DependencyWalker to this.
You can use your favorite ldd over Windows-related exe, dll.
To do this you need to install Cygwin (basic installation, without additional packages required) on your Windows and then just start Cygwin Terminal. Now you can run your favorite Linux com...
“Failed to load platform plugin ”xcb“ ” while launching qt5 app on linux without qt installed
...
Use ldd (man ldd) to show shared library dependencies. Running this on libqxcb.so
.../platforms$ ldd libqxcb.so
shows that xcb depends on libQt5DBus.so.5 in addition to libQt5Core.so.5 and libQt5Gui.so.5 (and many other syste...
Multiple glibc libraries on a single host
... will give you the libs being used are:
$ readelf -d myapp | grep Shared
$ ldd myapp
This will list the libs that your binary needs, but you probably already know the problematic ones, since they are already yielding errors as in OP's case.
"patchelf" works for many different problems that you may...
Hadoop “Unable to load native-hadoop library for your platform” warning
...bhadoop.so.1.0.0
And I know it is 64-bit:
[hadoop@VMWHADTEST01 native]$ ldd libhadoop.so.1.0.0
./libhadoop.so.1.0.0: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./libhadoop.so.1.0.0)
linux-vdso.so.1 => (0x00007fff43510000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f9be553a0...
Bash ignoring error for a particular command
... @IgorChubin I don't know why but this don't work output=(ldd $2/bin/* || true) | grep "not found" | wc -l script is terminating after this line when ldd return failure
– Vivek Goel
Jun 27 '12 at 17:44
...
What is the LD_PRELOAD trick?
...LOAD to preload library. BTW, you can CHECK if the setting is available by ldd command.
Example: suppose you need to preload your own libselinux.so.1.
> ldd /bin/ls
...
libselinux.so.1 => /lib/x86_64-linux-gnu/libselinux.so.1 (0x00007f3927b1d000)
libacl.so.1 => /lib/x86_64-li...
CentOS 64 bit bad ELF interpreter
... well. To identify a package providing an arbitrary library, you can use
ldd /usr/bin/YOURAPPHERE
if you're not sure it's in /usr/bin you can also fall back on
ldd $(which YOURAPPNAME)
The output will look like this:
linux-gate.so.1 => (0xf7760000)
libpthread.so.0 => /lib/lib...
How can I link to a specific glibc version?
...
-std=c11 \
-o test_glibc.out \
-v \
test_glibc.c \
-pthread \
;
ldd ./test_glibc.out
./test_glibc.out
The program outputs the expected:
gnu_get_libc_version() = 2.28
The atomic counter is 10000
The non-atomic counter is 8674
Command adapted from https://sourceware.org/glibc/wiki/Test...