Hi Guys ,
I wrote a C program using an external library of websockets in my local. Now I want to compile this code using the SDK and deploy the OVA.
I am having troubles compiling as there are no header files and shared library for websockets present in the SDK.
Is there any way to install these Headerfiles/shared libraries which are necessary for compiling and execution of the C program ?
Thanks.
Solved! Go to Solution.
Hi Tharun,
You may put the header files and shared libraries in a specific folder when you're trying to compile it.
And then copy the dependent libraries to /usb/lib of OVA. (refer to "function copy_new_app()" in Chapter 4.7)
Hope it helps.
Steve
Hi Tharun,
You may put the header files and shared libraries in a specific folder when you're trying to compile it.
And then copy the dependent libraries to /usb/lib of OVA. (refer to "function copy_new_app()" in Chapter 4.7)
Hope it helps.
Steve
Thanks Steve ,
Chapter 4.7 has what I was looking for.
Thanks Again ,
-Tharun