Re: Different *CFLAGS in gcc/Makefile.in

2008-03-21 Thread Paolo Bonzini
## the C flags (without any gcc -I...stuff) to be included in ## compilation of MELT generated C code thru the melt-cc-script ## do not put $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) ##there! MELT_CFLAGS= $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) But I'm not sure of the T_CFLAGS

Re: Different *CFLAGS in gcc/Makefile.in

2008-03-20 Thread Jim Wilson
Basile STARYNKEVITCH wrote: It is indeed the easiest. But for X_CFLAGS T_CFLAGS I only found the comment # These exists to be overridden by the x-* and t-* files, respectively. t-* files are target makefile fragments. x-* files are (cross)-host makefile fragments. See config.gcc and

Re: Different *CFLAGS in gcc/Makefile.in

2008-03-19 Thread Ralf Wildenhues
* Basile STARYNKEVITCH wrote on Tue, Mar 18, 2008 at 09:06:33PM CET: in gcc/Makefile.in there are many different *CFLAGS, notablye ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \ $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@ Do anyone have a precise idea of what

Re: Different *CFLAGS in gcc/Makefile.in

2008-03-19 Thread Basile STARYNKEVITCH
Ralf Wildenhues wrote: * Basile STARYNKEVITCH wrote on Tue, Mar 18, 2008 at 09:06:33PM CET: in gcc/Makefile.in there are many different *CFLAGS, notablye ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \ $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@ Do anyone have

Different *CFLAGS in gcc/Makefile.in

2008-03-18 Thread Basile STARYNKEVITCH
Hello All, in gcc/Makefile.in there are many different *CFLAGS, notablye ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \ $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@ Do anyone have a precise idea of what all these *CFLAGS are exactly for? (I guessed a bit some of