Re: Nokia n900 and Euphoria
- Posted by Jerome May 24, 2011
- 5436 views
mattlewis said...
Mercurial can generate patches for you with the "export" command (i.e., "hg export"). Locally, you can just use the sequential rev number (those numbers don't necessarily mean anything outside of your repo), so something like:
$ hg export -o arm_patches 1234:1240
Ok, so I think I'm close to generating a patch. So here is the last issue I'm running into on my ARM phone. I used gdb (thanks for the tip Matt!) to debug why I sometimes get an 'Illegal Instruction' error on my phone for some of the demos:
Program received signal SIGILL, Illegal Instruction. 0x002ff9b4 in decompress (c=251) at be_decompress.c:75 75 d = (double)*(float *)string_ptr;
So this has to do with 4-byte floating point numbers but I'm not sure why there would be an error. Thoughts?
Thanks,
Ira