libBulletDynamics.so.2.81: cannot open shared object

Post Reply
hbrunie
Posts: 1
Joined: Tue Jan 07, 2014 9:35 am

libBulletDynamics.so.2.81: cannot open shared object

Post by hbrunie »

Good morning,
I have already ran the Bullet's HelloWorld on this computer ( ASUS X301A ) on a Ubuntu 12.04 distribution of Linux.
The I formatted my computer, and I re-install ubuntu 12.04 ( for several uninteresting reasons ).
Today the HelloWorld program doesn't work.
I compile -> OK
I execute -> error while loading shared libraries: libBulletDynamics.so.2.81: cannot open shared object file: No such file or directory

ldd my_executable
linux-vdso.so.1 => (0x00007fff4ef8d000)
libBulletDynamics.so.2.81 => not found
libBulletCollision.so.2.81 => not found
libLinearMath.so.2.81 => not found
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f426ba19000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f426b803000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f426b442000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f426b146000)
/lib64/ld-linux-x86-64.so.2 (0x00007f426bd30000)

my code for compiling : g++ -I/usr/local/include/bullet -L/usr/local/lib -o test main.cpp -lBulletDynamics -lBulletCollision -lLinearMath
Thank you for your time !
Post Reply