felix winkelmann scripsit: > That the assembler aborts doesn't really look too good. Is there some > gcc option to emit "long" jumps (assuming there is some range problem)? > Try to remove the optimization flags (-Os -fomit-frame-pointer) from > CFLAGS.
The trouble is that long jumps on the 8086 architecture are incompatible with PIC, since they are (as the error message says) absolute. So the trouble arises from the combination of PIC and overlarge C functions requiring excessively long jumps. One or the other must go. (Or you could, like, not support this antiquated platform, dude.) -- In politics, obedience and support John Cowan <[EMAIL PROTECTED]> are the same thing. --Hannah Arendt http://www.ccil.org/~cowan _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
