Niklaus Giger writes: > gnat-gps > gnat-gps: error while loading shared libraries: > /usr/lib/libgtkada-2.4.so.0: R_PPC_REL24 relocation at 0x0178d778 for > symbol `abort' out of range
The function 'abort' is part of the GNU C library in /lib/libc.so.6. The message seems to indicate that libc.so.6 was compiled without the mandatory -fPIC option, which instructs the compiler to emit position-independent code. To ascertain that this is indeed the problem, could you try this: $ readelf -a /lib/libc.so.6 | grep abort Please send the output. -- Ludovic Brenta. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

