ldd Questions
3
Solved
My python code gives this error:
from cv_bridge import CvBridge, CvBridgeError
ImportError: libcv_bridge.so: cannot open shared object file: No such file or directory.
However if I do a ldd, ev...
2
Solved
Suppose I have a A.so file whose dependencies are found from ldd
#ldd A
[...]
libxml2.so.2 => /usr/lib64/libxml2.so.2 (0x00007faaf9722000)
libxyz.so.49 => /usr/lib64/libxyz.so.49 (0x00007faa...
Marelya asked 21/4, 2016 at 17:10
14
I’m trying to compile openssl-1.1.0e on Centos 7 (7.3.1611)
but after i successfully compiled everything without any warning, i get an error when i’m trying any openssl command
[mdm@dev openssl-1....
Chamade asked 16/3, 2017 at 7:46
3
Solved
I have a shared library that I'd like to dynamically link into several separate binary Cargo applications. I include its location in the linker using the -- -L /path/to/dir format and the applicati...
Postmeridian asked 15/11, 2016 at 5:33
3
Solved
I have not been able to figure out why my binary is not loading. It is a dylib loaded by MATLAB (MEX-file), and links to quite a few dylibs in different locations. MATLAB tells me it cannot load th...
3
Solved
First off, please keep in mind that I'm new to linux.
I'm having problems compiling my project. I keep get the following error:
/usr/bin/ld: CMakeFiles/Robot.dir/source/ModuleHandler.cpp.o: unde...
3
I have an older binary executable (utserver, closed source) that I'm trying to run on a system running Fedora 22.
utserver wants openssl_1.0.0 - F22 provides openssl_1.0.1k
I made two symlinks:
...
Keek asked 18/9, 2015 at 4:58
2
Solved
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 => /usr/lib64...
Ectoplasm asked 25/2, 2013 at 10:18
2
Solved
How do I find out what DLLs an executable depends on?
On systems with the GNU development toolchain (gcc &c) I use ldd for that, but what about the clang systems, like, e.g., Mac OS X (which d...
10
Solved
What is the equivalent of Linux's ldd on Windows?
Gasper asked 3/1, 2010 at 2:1
1
Solved
I am trying to make my software available on macOS, and in my toolchain I use the ldd -r MyModel.so command to verify that everything went well, but I can’t really find an equivalent command on mac...
4
Solved
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:
root@yourbox:~/work/dev/c++/projects/testfgci/dist/De...
1
Solved
I'm trying to run an old C++ program, compiled on CentOS 6, on modern GNU/Linux distribution (Gentoo Linux). Nowadays CentOS 6 is outdated as well as suggested libraries, so it is necessary to prov...
Sallie asked 8/2, 2021 at 8:49
0
I'm trying to use docker with qemu to build an arm image in my x86 host computer
I use arm64v8/ubuntu as the based image
I make a simple opencv program and try to use ldd command to see the depende...
1
Solved
I created a new project with stack which made a project with resolver: lts-16.12. When running a sample .hs file with stack runghc src/MyExample.hs, it works fine, but I'm getting these as well bef...
Turbary asked 3/9, 2020 at 19:28
1
Solved
Consider this AMD64 assembly program:
.globl _start
_start:
xorl %edi, %edi
movl $60, %eax
syscall
If I compile that with gcc -nostdlib and run ldd a.out, I get this:
statically linked
If...
Longley asked 2/5, 2020 at 2:27
3
Solved
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 demonst...
Variegation asked 20/4, 2012 at 20:31
3
Solved
I've been using a docker image for c++ compilation. It's based on Ubuntu 18.04. When I attempt to run on some Ubuntu 16 systems, I get this message:
/lib/x86_64-linux-gnu/libm.so.6: version `GLIBC...
Application asked 7/3, 2019 at 16:29
2
I have Ubuntu 14.04. It came with openssl 1.0.1f. I want to install another openssl version (1.0.2) and I want to compile it by myself.
I configure it as follows:
LDFLAGS='-Wl,--export-dynamic -...
6
Solved
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 l...
Eskisehir asked 27/5, 2011 at 9:0
0
Hopefully this isn't a duplicate (I found a bunch of similar questions, but not exactly what I'm asking).
On linux when I run ldd <path/to/executable> I get a nice list of the shared library...
1
Solved
I tried to find out which libraries Qt Assistant needs for deployment. I used ldd on Linux for this.
I found that ldd provides an option -u to "print unused dependencies". This sounds like there ...
Scheelite asked 7/5, 2018 at 12:59
3
Solved
Is there a simple and efficient way to know that a given dynamically linked ELF is missing a required .so for it to run, all from the inside of a C/C++ program?
I need a program with somewhat simi...
Nev asked 5/10, 2009 at 12:4
3
1
Solved
I want to use linuxdeployqt tool, but this command:
./linuxdeployqt-continuous-x86_64.AppImage /home/user/QtProjects/build-VPSTest-Desktop_Qt_5_6_0_GCC_64bit-Release/VPSTest
Outputs this:
Not usi...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.