On Tue, May 13, 2003 at 10:50:21PM +0200, Thiemo Seufer wrote: > I just had a look at the gcc sources, the mips*-linux config doesn't > support o64 at all. It seems I was wrong (I got confused by the way the kernel calls gcc). Looking at gcc-3.3: #define ABI_32 0 #define ABI_N32 1 #define ABI_64 2 #define ABI_EABI 3 #define ABI_O64 4 The naming is very "unfortunate", though. We have (n32,64) and (32,o64). Wouldn't it help to at least allow for n64 and o32 commandline options? -mabi=32 and -mabi=64 will have to be kept for Irix compatibility though, I think. -- Guido