Morning,
I would like to import my own library to Veins (v4.4) project.
I followed this tutorial to compile a shared library. I've also stripped the shared library with this command:
strip --strip-unneeded libfoo.so
since I've noticed that system libraries such as sqlite3 are compiled in stripped mode.
Then I imported the library from
1.Project->Properties->Paths and Symbols :
1.1 includes
1.2 Libraries
1.3 Library Paths
2.Makemake-> Src->Options->Link-> Additional Libraries
However, the problem is that when I use the imported library I still get an error of "undefined symbol "; so I suppose the library is not correctly imported or read by the simulator.
Any suggestion?
Thanks for helping