Was going to be an "incredible machine" clone except each stage you're trying to figure out how to sacrifice the goat, but only ended up having 2-3 hours to work on it sunday night so it's barely started, much less finished, so all it really is right now is a rough physics sim with a "goat" that gibs when the "knife" hits it.
There's nothing to really play so i didn't bother with cross compiling, as with all my stuff from past few LD's made with my "aether" game engine.
I didn't pack a launcher with it like i normally do, so if you don't have all the library dependencies installed locally (you wont unless you installed them from one of my other games) you have to set LD_LIBRARY_PATH to "./:$PATH" before running so it can use the packaged libs.
The first error was the missing libBox2D.so.2.1.0 - but I got around that with an "ln -s libBox2D.so libBox2D.so.2.1.0" along with LD_LIBRARY_PATH. Unfortunately another error came up next:
X Error of failed request: BadRequest (invalid request code or no such operation) Major opcode of failed request: 154 (GLX) Minor opcode of failed request: 34 () Serial number of failed request: 133 Current serial number in output stream: 132
@schnerble that opcode means your system is incapable of creating an OpenGL 3.3 context, I should have mentioned that, my engine does require OpenGL3.3 or higher support (GeForce 9000 series or up, with offcial nvidia drivers, or equivilant radeon card)
Raptor: ah, of course. I have a dual-GPU laptop (Intel HD Graphics OpenGL 3.0-ish + GeForce 540M OpenGL 4.x) and need to use a special command to run it on the GeForce as opposed to the Intel card. Guess I should've thought to try that. Pity; I've been trying to run many of the Linux games as I spend most of my time on that OS :) Unfortunately I probably won't get to touch that machine before the deadline now.
Comments14
X Error of failed request: BadRequest (invalid request code or no such operation)
Major opcode of failed request: 154 (GLX)
Minor opcode of failed request: 34 ()
Serial number of failed request: 133
Current serial number in output stream: 132
@schnerble that opcode means your system is incapable of creating an OpenGL 3.3 context, I should have mentioned that, my engine does require OpenGL3.3 or higher support (GeForce 9000 series or up, with offcial nvidia drivers, or equivilant radeon card)