Tagged Questions

1
vote
2answers
42 views

Is there a way to package a dynamic library in the application binary?

Hi I am developing a Qt application that uses a plugin (dynamic library) and I was wondering if there was a way I could build the application and library in one file (maybe using t …
0
votes
1answer
288 views

Dynamically calling a NODLL cobol program from a DLL cobol program on z/OS

On the mainframe using Enterprise Cobol for z/OS, is it possible to dynamically CALL a Cobol Dyamic link library (DLL) program from a cobol program that has been compiled with NODL …
0
votes
1answer
91 views

How to include a dynamic library in a makefile build

I am writing a program in Mac OSX 10.6 environment. In my make file, I would like to include a dynamic library /usr/lib/libsqlite3.dylib as part of my build I am not familiar with …
0
votes
1answer
40 views

How to know which dynamic libraries are needed by an ELF?

Is there any tool that reading the headers prints the name of the dynamic libraries required by a Linux executable to run? I need it to know if there are some weird dependencies ( …
1
vote
2answers
425 views

Converting a C++ .exe project to a dll

Microsoft provides the source code of vshadow to manipulate VSS (Volume Shadow Service [shadow copy]), and I've modified it a bit but I want to make it into a dll so I can use it i …