Error while building OpenCV examples on ubuntu
I've used this tutorial to build OpenCV on ubuntu. Everything goes well until I try to build the examples. when I do this:
sh build_all.sh
many of the same error occurs:
开发者_如何学运维compiling tree_engine.cpp
/usr/bin/ld: warning: libavutil.so.49, needed by /usr/local/lib/libopencv_highgui.so, not found (try using -rpath or -rpath-link)
for each example the same error occurs. The code compiles but trying to run the compiled code will fail with error:
./tree_engine: error while loading shared libraries: libavutil.so.49: cannot open shared object file: No such file or directory
I have no idea what this libavutil is.
I use ubuntu 10.10
May be you have it in different name, so try this:
ls -l /usr/local/lib/libavutil.so*
In my case:
lrwxr-xr-x 1 root wheel 20 Jan 17 00:30 /usr/local/lib/libavutil.so -> libavutil.so.50.15.1
lrwxr-xr-x 1 root wheel 20 Jan 17 00:30 /usr/local/lib/libavutil.so.1 -> libavutil.so.50.15.1
-rwxr-xr-x 1 root wheel 54352 Jan 17 00:30 /usr/local/lib/libavutil.so.50.15.1
As root type this:
ln -s /usr/local/lib/libavutil.so.50.15.1 /usr/local/lib/libavutil.so.49
If you don't have this library, you can install via package manager:
apt-get install libavutil49
精彩评论