|
Re: Problem with idata_user_routines.o?
The short answer is something is too big and you've exceeded one of the many kinds of space limitations.
I would guess that the most likely answer is you've declared a large array somewhere, e.g.,
int myarray[256];
would be one thing that could be too large and cause this kind of error, but there are other possible ways.
__________________
"Rationality is our distinguishing characteristic - it's what sets us apart from the beasts." - Aristotle
|