Forum Discussion
Altera_Forum
Honored Contributor
21 years agoglobal pointer relative offset
The linker gives me this message: “global pointer relative offset 34384 at address 0x008adcc8 out of range -32678 to 32767 » I don’t see what does that mean ? When I click on the error lin...
Altera_Forum
Honored Contributor
21 years agoFrom your post, I take it that you are trying to use microwindows.
The problem is likely to be down to a pointer being accessed using gp relative addressing when it should be using absolute addressing. A simple workaround is to add the option: -G0 to the compiler flags, although it would be better for code performance to try and track down the underlying cause of the problem.