I try to compile some code, which works on my main-pc under ubuntu 14.04 LTS. Now I want to use a little board(Zedboard) with linux to control a EnOceanreceiver.
I use Linaro 12.11 and programm in C++.
If I compile, there is no error. But if I want to start the programm comes: error while loading shared libraries: libEOLink.so.0: cannot open shared object file: No such file or directory
My Makefile looks like:
all: EnOcean.cpp
g++ -I/homelinaro/EOLink EnOcean.cpp -o EnOcean -L/usr/local/lib -lEOLink
I found the data under /usr/local/lib but it doesn't help if with or not.
Thanks for help!