`libltdl` is a small library that provides a portable interface to dynamically loading and accessing shared objects, with the aim of hiding the various difficulties of using `dlopen()` on libraries from programmers.
Questions tagged [libltdl]
11 questions
6
votes
5 answers
ltdl.h Not found error while building chaincode
I am trying to build a chaincode by using go build. when i run Go build command its reporting
.\hyperledger\fabric\vendor\github.com\miekg\pkcs11\pkcs11.go:29:18:
fatal error:ltdl.h: No such file or directory
compilation terminated
I installed…

surender
- 71
- 1
- 1
- 3
5
votes
1 answer
How to install xmlsec1 on windows
I am using djangosaml2 and pysaml2 for sso authentication using SAML.
Pysaml2 requires xmlsec1 for security assertions.
I am able to install xmlsec1 on ubuntu 14.04. everything is working fine.
For windows platform, I am not able to install xmlsec1…

sachin27
- 145
- 3
- 13
3
votes
1 answer
Configuring pocl for RISCV
I am trying to use pocl to cross-compile OpenCL programs for RISCV64. Slide 18 at this link: https://riscv.org/wp-content/uploads/2015/01/riscv-software-toolchain-workshop-jan2015.pdf seems to suggest that it is possible to generate scalar code for…

kchanuec
- 55
- 5
3
votes
1 answer
configure: error: GNU libltdl (Libtool) not found, see README
I'm trying to install GNU Guile so that I can later install Guix. My environment is pretty locked down, but they do allow us build tools. I've been trying to get pianobar installed for the past few days, and it works, but I get the output "Cannot…

ijustlovemath
- 703
- 10
- 21
3
votes
1 answer
gnu/libtool (libltdl) installed but not found by configure script
I am trying to install guile locally on a system. It requires gnu/libtool. While installing all its dependencies, the "make check" command showed errors while installing gnu/libtool. But if I omitted the command and simply ran "make" followed by…

Python_user
- 1,378
- 3
- 12
- 25
3
votes
1 answer
libltdl.so.3: cannot open shared object file: No such file or directory in Ubuntu 14.04
I have a program the requires shared library libltdl.so.3. While running this program in 14.04 i am encountering following error:
error while loading shared libraries: libltdl.so.3: cannot open shared object file: No such file or directory
I have…

Mayank Patel
- 8,088
- 5
- 55
- 75
1
vote
0 answers
issue with including libltdl/lt_system.h library
I am working on a c++ project on my computer that is running on Linux.
When i cloned my project to another computer that is running on Windows
i can't run my project any more.
I got the following error:
fatal error: libltdl/lt_system.h: No such file…

Rafa_G
- 45
- 1
- 10
1
vote
0 answers
How to use libltdl on OS X in a Qt project
I try to use libltdl in Qt on OSX. I downloaded the library with brew and i can find it in /usr/local/lib/libltdl.dylib .
I link it in Qt Creator using the assistant and those lines were added to my .pro
macx: LIBS += -lltdl
The problem is when i…

Landelin Delcoucq
- 196
- 15
0
votes
0 answers
Trying to install program, but can't find LTDL_LIBRARY on Mac
I'm trying to install a program on Mac terminal, but I've been stuck on this step: "cmake -DCMAKE_BUILD_TYPE=Release .. && make"
This is the error I initially got:
CMake Error: The following variables are used in this project, but they are set to…
0
votes
0 answers
enforce libtool to link with libdl.so
I am building a shared lib on Ubuntu 18.04.1 that has to be linked explicitly with libdl.so.
All is good when using a non-libtool makefile - "-ldl" is supplied to the linker and the produced binary imports libdl.so.
But when trying to build with a…

Ilia Kolominsky
- 11
- 2
0
votes
1 answer
Accessing list of symbols in plugin
i'm using libltdl in order to dynamically load plugin libraries. Been following this documentation, and after i call this
lt_dlhandle lt_dlopen (const char *filename)
i need to know what symbols are defined in this library. I need the list of…

lurscher
- 25,930
- 29
- 122
- 185