execute example

Hello,
When I compile the examples it compiles well but when I try to execute the examples it appears:

./taskintro: errror while loadig shared libraries: liborocos-deployment.so.0.4.1: cannot open shared object file: No such file or directory

And the file is in /usr/local/lib and in the Makefile the OROPATH =/usr/local.To that it can be due? Thanks

Ruben Smits's picture

execute example

On Thursday July 19 2007 19:11:20 tico wrote:
> Hello,
> When I compile the examples it compiles well but when I try to execute the
> examples it appears:
>
> ./taskintro: errror while loadig shared libraries:
> liborocos-deployment.so.0.4.1: cannot open shared object file: No such file
> or directory
>
> And the file is in /usr/local/lib and in the Makefile the OROPATH
> =/usr/local.To that it can be due? Thanks

Did you run ldconfig after installing the libraries?

Ruben

--
Ir. Ruben Smits
Robotics Group, Mechanical Engineering,
KULeuven
--
Orocos-Dev mailing list
Orocos-Dev [..] ...
http://lists.mech.kuleuven.be/mailman/listinfo/orocos-dev

Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm

Before you start the

Before you start the application, type:

export LD_LIBRARY_PATH=/usr/local/lib

OR:

as the 'root' user, add the line
/usr/local/lib
to /etc/ld.so.conf and run the 'ld.config' program.

The second option is easier, as you only need to do it once.

Peter