The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.28 (Linux)
|
problem with compiling in Debian - 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: problem with compiling in Debian (/showthread.php?tid=2390) |
problem with compiling in Debian - pironman - 06-27-2019 Good morning, I try to compile VDrift in debian stretch, but i get this error: Code: In file included from /usr/include/c++/6/string:52:0, These are only the last lines, but there is a lot of similar error. Whats the problem? Thanks RE: problem with compiling in Debian - NaN - 06-28-2019 Did you modify the source files? That line does not make any sense: Code: error_output << "Error opening file for writing: " << error_output << endl; It should be: Code: error_output << "Error opening file for writing: " << strFileName << endl; RE: problem with compiling in Debian - pironman - 06-29-2019 (06-28-2019, 12:39 PM)NaN Wrote: Did you modify the source files? No, I simply copy and paste RE: problem with compiling in Debian - NaN - 06-29-2019 Your compiler is complaining about an error in a specific line of code. But this line of code does not match vdrift code. It is different. That is why I asked whether you did something with vdrift source code. RE: problem with compiling in Debian - pironman - 12-03-2019 Good morning. After 5 months, I'll try again. Now I have a fresh debian installation on my pc, and some other differences. I have just installed all the dependecies required. Then, I try to compile, using the command as in the readme file: Code: scons arch=a64 release=1 extbullet=1 prefix=/usr/local and that's the output: Code: root@mattia:/home/mattia/vdrift# scons arch=a64 release=1 extbullet=1 prefix=/usr/local why package bullet not found? in debian, that's package is "libbullet2.87", could be the different name the problem? How can I fix it? Thanks RE: problem with compiling in Debian - NaN - 12-04-2019 You need the dev package, which should be caled something like libbullet-dev. It should install pkgconfig/bullet.pc. From my experience VDrift builds fine on Fedora, Arch Linux and Ubuntu. Not sure why it won't on your system. |