Hi Peter,

I've started to add some assembly routines to my project which is in C until now. Now I get the following error internal compiler error: Unsupported Relocation Error

Without your code, its generally due to a symbol size problem. You have an instruction in Assembler taking a symbol from C and the C symbol has a larger address size than the assembler instruction can take.

This happens at link time when the symbols are allocated actual addresses and the instructions which use these symbols are updated with the allocated address.


--
Peter Jansen

Reply via email to