how to use compiled .so in C++
Posted: Thu May 16, 2013 4:11 pm
Hello folks,
I'm pretty new to programming in c++ and ran into the following problem:
I want to etablish a network connection between a windows and a linux system and use the pb network lib for this task.
However if I try to compile a simple .so lib like this
and save it as libtest.so I dont find a solution to use it in my c++ code. I added it to the linker (Makefile) with "-ltest", but now I have no idea how to go on.
Normally Ive got some .H file to include...
Help..
I'm pretty new to programming in c++ and ran into the following problem:
I want to etablish a network connection between a windows and a linux system and use the pb network lib for this task.
However if I try to compile a simple .so lib like this
Code: Select all
ProcedureCDLL.i go()
MessageRequester("test","hello")
EndProcedureNormally Ive got some .H file to include...
Help..