View Single Post
Posts: 726 | Thanked: 345 times | Joined on Apr 2010 @ Sweden
#8
This error, typically, is caused by the inclusion of header files for some other platform than the intended one. When the cross compiler then tries to compile this, it fails since the inline assembler is for another architecture.

The solution, in my case, was to make sure that the include directory that was used pointed at the architecture specific location. If you are using a general packet like Qt, you also need to check if you're missing some #define that will activate inline assembler for your architecture.