## 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 (i
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 confi
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 a
* 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 o
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 t