This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[PATCH] BOOT_CFLAGS vs profiled_bootstrap on the mainline
- From: Paolo Bonzini <paolo dot bonzini at lu dot unisi dot ch>
- To: GCC Development <gcc at gcc dot gnu dot org>, GCC Patches <gcc-patches at gcc dot gnu dot org>, Andrew Pinski <pinskia at physics dot uc dot edu>
- Date: Fri, 16 Dec 2005 16:15:58 +0100
- Subject: [PATCH] BOOT_CFLAGS vs profiled_bootstrap on the mainline
- References: <29f23a90012c02e7e8433a7e9aa6b8d2@physics.uc.edu>
Andrew Pinski wrote:
Trying to see if a bug was fixed (and an approved patch by me was still
needed), I
noticed that BOOT_CFLAGS was being ignored for profiled_bootstrap.
BOOT_CFLAGS was being ignored, period. :-)
Can you try this (and maybe commit it as obvious)?
Index: Makefile.def
===================================================================
--- Makefile.def (revision 108650)
+++ Makefile.def (working copy)
@@ -207,4 +207,5 @@ flags_to_pass = { flag= YACC ; };
// Host tools
flags_to_pass = { flag= AR_FLAGS ; };
+flags_to_pass = { flag= BOOT_CFLAGS ; };
flags_to_pass = { flag= CFLAGS ; };
flags_to_pass = { flag= CXXFLAGS ; };
Paolo