I'm working on a game for the iPhone where I use the Oolong engine for rendering, and now I just tried to update my project to the newest version.
However, now I get the following error when I try to compile:
gcc-4.2 failed with exit code 1
In the build results I see in which cpp file the error happens, but I don't see any additional information.
How can I get more info about what is going wrong in order to track down the problem?
EDIT
After inspecting the compile output, i got the following lines, where the error occurs:
{standard input}:61:selected processor does not support 'fmrx r0, fpscr'
{standard input}:62:unshifted register required -- 'bic r0,r0,#0x00370000'
...somemorelines
{standard input}:69:selected processor does not support 'fmxr fpscr,r0'
This is some VFO code from one of the #include
files. It works fine in the examples that come with the engine. Could there be something screwed up with my project settings? I compared them to the one of the examples and they seem to be identical.