I am looking for basic examples/tutorials on:
- How to write/compile libraries in C++ (.so files for Linux, .dll files for Windows) and...
- How to import and use those libraries in other code.
Many thanks in advance!
|
|
|
|
|
|
|
The coder.cc :
t.h :
t.cc :
But how, how, how?!
The |
|||
|
|
|
|
When having trouble with libraries not being found i find ldd very useful
You can skip out on LD_LIBRARY_PATH when you're not installing you library by adding
to the compilation of your executable in pre-install mode. You can set to the current directory in this case |
|||
|
|
|
|
@mutable & @dmckee Got it working ... Thank both of you! |
||
|
|
|
|
@bcnewman I am able to compile your examples but when I attempt to run the executable I get [an error loading shared libraries] Did you install the newly created library somewhere along your LD_LIBRARY_PATH or equivalent? Did you update any dynamic loader cache (see |
||
|
|
|
|
@mutable I am able to compile your examples but when I attempt to run the executable I get:
I'm sure I am missing something simple but I cannot find it. |
||
|
|
|
|
|
||
|
|