Linking a lib with QT on linux
-
@mrjj said in Linking a lib with QT on linux:
With objdump or ?
Yes, "objdump -T" - take a look at the libfw_console_api.so output and you will notice that they're plain C functions - they are not annotated.
@Christian-Ehrlicher
Thank you
Its handy to know. goes on my of list of things to try when you get undefined's and
checked path many times :=) -
for the header fix, I added in the header and that took care of it
#ifdef __cplusplus #define FWCONSOLEAPI_DECLSPEC extern "C" #else #define FWCONSOLEAPI_DECLSPEC extern #endif//__cplusplus
thank you again, you guys are awesome