macchina-io / macchina.io

macchina.io EDGE is a powerful C++ and JavaScript SDK for edge devices, multi-service IoT gateways and connected embedded systems.
https://macchina.io
GNU General Public License v3.0
516 stars 154 forks source link

POCO Library issue #31

Closed palade closed 8 years ago

palade commented 8 years ago

Do poco libraries need to be installed before building macchina or come together with this project? After building the project and try to run it, I get the following error:

error while loading shared libraries: libPocoOSP.so

obiltschnig commented 8 years ago

No, POCO is included in macchina.io. Have you set LD_LIBRARY_PATH correctly?

palade commented 8 years ago

Deleted everything, and re-build it, and now works. Thank you for your help!

Sultan91 commented 7 years ago

@palade Could you clarify what should written: export LD_LIBRARY_PATH=pwd/platform/lib/Linux/x86_64 Is 'pwd' thing should be replaced with present working directory or we should leave it as it is?

palade commented 7 years ago

$PWD is the current working directory. Can you try LD_LIBRARY_PATH=$PWD/platform/lib/Linux/x86_64? otherwise, just embed the full path.

Sultan91 commented 7 years ago

Yes, I get it thanks!