This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello everyone,
I have been wondering this for a while, but only now has it become something I need to further my development on this project I'm working on.
Basically, if I download a 3rd party linux library, such as libssh2 (http://www.libssh2.org/), how do I go about making use of it in my software? So far I have gotten away with the basic linux provided libraries, but for something like this a pre-written API makes my life much easier.
What is the correct process to go about in order to build and include it into my current project? I have tried building it into my development playform using teh simple "./configure" command, but every time I compile it complains. The error specificall is "could not read symbols: File in wrong format".
I am working in C using code composer, developing for the AM335x start kit in linux.
Thanks in advanced.
Gregory Dias
Hi,
Go to Project properties, then Build -> ARM Linker -> File Search Path and add your library there.
Best regards,
Miroslav
Miroslav,
Thanks for the reply. It seems that I configured/built the library incorrectly, and that was the issue. I did add it to the paths and it cleared out some other issues for CC.
Thanks again,
Gregory Dias