![]() |
Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - Printable Version +- Forums (https://www.vdrift.net/Forum) +-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3) +--- Forum: Help (https://www.vdrift.net/Forum/forumdisplay.php?fid=5) +--- Thread: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error (/showthread.php?tid=1705) |
Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-17-2013 Hi, I just installed vdrift through playondeb. When starting from command line i get this error: xxx@xxxxxx:~$ vdrift -verbose vdrift: error while loading shared libraries: libBulletDynamics.so.2.80: cannot open shared object file: No such file or directory when I try with gdb (found in this forum), I get: xxx@xxxxx:~$ gdb vdrift GNU gdb (Ubuntu/Linaro 7.4-2012.04-0ubuntu2.1) 7.4-2012.04 Copyright © 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". For bug reporting instructions, please see: <http://bugs.launchpad.net/gdb-linaro/>... Reading symbols from /usr/games/vdrift...(no debugging symbols found)...done. (gdb) run Starting program: /usr/games/vdrift /usr/games/vdrift: error while loading shared libraries: libBulletDynamics.so.2.80: cannot open shared object file: No such file or directory [Inferior 1 (process 3529) exited with code 0177] (gdb) exit Undefined command: "exit". Try "help". (gdb) quit xxx@xxxxxxx:~$ Anyone any ideas? I am guessing it has something to do with http://bulletphysics.org/ but this should come installed with the game no? thanks in advance for any advice RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-17-2013 Hi, try: apt-get install libbullet RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-19-2013 (03-17-2013, 08:07 PM)NaN Wrote: Hi, try: Hi, I tried, but I got E: Unable to locate package libbullet I searched for the correct repository but couldn't find it. I did install playdeb though, I guess the libraries were in that package? tx, T RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-19-2013 I am not using debian/buntu. But I think it is called libbullet0: http://www.ubuntuupdates.org/package/getdeb_games/quantal/games/getdeb/libbullet RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-21-2013 xxx@xxxxx:~$ sudo apt-get install libbullet0 Reading package lists... Done Building dependency tree Reading state information... Done libbullet0 is already the newest version. libbullet0 set to manually installed. 0 upgraded, 0 newly installed, 0 to remove and 36 not upgraded. again no luck ![]() RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-21-2013 If I had to guess I would say the playdeb guys have updated bullet lib to 2.81 but didn't rebuild vdrift. I'd suggest to report the issue to them, so that they can fix it. RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-22-2013 (03-21-2013, 03:43 PM)NaN Wrote: If I had to guess I would say the playdeb guys have updated bullet lib to 2.81 but didn't rebuild vdrift. I'd suggest to report the issue to them, so that they can fix it. seems logic! I sent them a message tx for the help. T RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-23-2013 Quote:I tried compiling with bullet 2.81 but it fails with this message: Hey I just got word from they guys at playdeb (see quote above). Does vdrift support bullet 2.81? tx T RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-23-2013 There is a patch for the last release http://sourceforge.net/projects/vdrift/files/vdrift/vdrift-2012-07-22/vdrift-2012-07-22c_bullet281_patch.diff/download RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - ivanko - 03-24-2013 (03-23-2013, 08:05 AM)NaN Wrote: There is a patch for the last release http://sourceforge.net/projects/vdrift/files/vdrift/vdrift-2012-07-22/vdrift-2012-07-22c_bullet281_patch.diff/download Dear NaN, could you please tell me what do you do with this patch, where do I have to copy it ? Thanks beforehand for your help. Ivan. RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-24-2013 Place the diff into vdrift directory(unpacked tar.bz2) and run: patch < vdrift-2012-07-22c_bullet281_patch.diff RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - theo23 - 03-27-2013 (03-24-2013, 09:55 AM)NaN Wrote: Place the diff into vdrift directory(unpacked tar.bz2) and run: Hi, thanks for your help but I have an issue with the command: root@xxxxx:/usr/share/games/vdrift# patch < vdrift-2012-07-22c_bullet281_patch.diff (Stripping trailing CRs from patch.) can't find file to patch at input line 3 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |--- data/skins/simple/menus/AssignControl Mon Jan 19 23:26:36 1970 |+++ data/skins/simple/menus/AssignControl Mon Jan 19 23:26:36 1970 -------------------------- File to patch: it ends in a prompt? what should I put in? thx in adv RE: Ubuntu 12.04 (x64): libBulletDynamics.so.2.80 error - NaN - 03-27-2013 Yeah, it is a relative path patch. Use: patch -p0 < vdrift-2012-07-22c_bullet281_patch.diff |