Quote:
Originally Posted by hawhill
Where are you compiling? Crosscompiling, perhaps? Then you would need to provide the library to your crosscompiler to link against it. When not in a standard library search path of ld, you might need to give the -L parameter to point to the directory where the .so can be found. Note that you might need the .so plus some of the symlinks pointing to it, depending on its SONAME (an ELF file property).
|
From that, i figured:
I need to cross compile the app using a cross compiler and have the .so in the linking step.
Okay. Back to cross compiling.
BTW can I use tcc?