Re: ARM port
- Posted by Jerome Sep 04, 2011
- 5114 views
coconut said...
This is really the one I compiled, file timestamp confirmed.
Ok, thanks! We should be able to find where the illegal instruction is using gdb (GNU debugger). You might need to re-compile the source again with debugging information:
./configure --debug --arch=ARM
Then you can debug one of the demo programs that gives the illegal instruction:
gdb eui run allsorts.ex
It should tell you where the illegal instruction occured, and we can try to fix it from there. We had to do something similar not too long ago http://openeuphoria.org/forum/m/115739.wc.
Thanks,
Ira