Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.

rebuild-platform.sh fails with error loading shared lib libisl.so.13

0 votes
I started with a clean build of Ubuntu 16.10 and install jevois using the easy install script. Everything looked like it completed without problems. When I try to build the software to re-install it on the SD card I get the following error:

~/jevois-sdk/out/sun8iw5p1/linux/common/buildroot/host/usr/bin/../libexec/gcc/arm-buildroot-linux-gnueabihf/6.1.0/cc1:
  error while loading shared libraries: libisl.so.13: cannot open shared
  object file: No such file or directory

The file exists in

../jevois-sdk/out/sun8iw5p1/linux/common/buildroot/host/usr/lib/libisl.so.13
../jevois-sdk/out/sun8iw5p1/linux/common/buildroot/build/host-isl-0.14.1/.libs/libisl.so.13

but I'm not sure why it isn't found.

Am I missing something?
asked Mar 21, 2017 in User questions by johnyester (150 points)

1 Answer

0 votes
 
Best answer

can you try to add its location to your LD_LIBRARY_PATH, for example

export LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:~/jevois-sdk/out/sun8iw5p1/linux/common/buildroot/host/usr/lib

(all in one line). Not sure why it is not being found on your machine.

answered Mar 21, 2017 by JeVois (46,580 points)
selected Mar 22, 2017 by johnyester
That was it! Thank you.
I also run into the same error. This solution also works for me.
Same problem and same solution here.
...