Hi,

I think I have a work around for this issue. What is happening is that files
build.make and link.txt in directory CMakeFiles are saying that there's a 

/usr/lib/libuuid.so

But if you have a 64 bit linux (and probably something similar happens in other
platforms), that library gets installed elsewhere, e.g.

$ find /usr -name libuuid.so
/usr/lib/x86_64-linux-gnu/libuuid.so

The work around is to create a symbolic link to the library where it is expected

$ cd /usr/lib
$ ln -s /usr/lib/x86_64-linux-gnu/libuuid.so

Best regards,

Ramon.

_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to