Re: default cflags to compile

2005-12-12 Thread Nuno Lopes
I need to generate a gcc binary that will always enable the -fabi-version=1, because I have a library built with gcc 3.3 and I need to link with it, but I would like to use gcc 4. The libstdc++ ABI broke between these releases, so unless your library doesn't use libstdc++ at all (somewhat unlike

Re: default cflags to compile

2005-12-11 Thread Nix
On 8 Dec 2005, Nuno Lopes gibbered uncontrollably: > I need to generate a gcc binary that will always enable the > -fabi-version=1, because I have a library built with gcc 3.3 and I > need to link with it, but I would like to use gcc 4. The libstdc++ ABI broke between these releases, so unless you

default cflags to compile

2005-12-08 Thread Nuno Lopes
Hi, I need to generate a gcc binary that will always enable the -fabi-version=1, because I have a library built with gcc 3.3 and I need to link with it, but I would like to use gcc 4. Is there a simple way to do this (a configure option,..) ? or do I need to patch the gcc/c-cppbuiltin.c file