Re: supporting --with-cpu=default32 option for x86_64

2005-03-17 Thread James E Wilson
Nitin Gupta wrote: following lines were added in config.gcc in order to recognise --with-cpu=default32. But I dont understand , how it was actually made to default to 32-bit. The trick is to look at the default64 code, and note what default32 doesn't do that default64 does do. The code you quoted

supporting --with-cpu=default32 option for x86_64

2005-03-16 Thread Nitin Gupta
Hi, I noticed that ppc64 has this support for building biarch compiler defaulting to 32-bit. x86_64 does not suport that as of now. I am trying to follow ppc64 to add this support for x86_64. I saw that following lines were added in config.gcc in order to recognise --with-cpu=default32. But I dont