This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GCC build of HEAD failed for native with your patch on 2004-10-18T04:03:25Z.


On Monday 18 October 2004 08:33, Steven Bosscher wrote:
> On Monday 18 October 2004 07:52, GCC regression checker wrote:
> > With your recent patch, GCC HEAD does not compile on:
> >  native

I've committed the following as obvious.

Gr.
Steven

        * Make-lang.in (java/parse.o-warn, java/parse-scan.o-warn):
        New rules to work around old Bison warnings.

Index: Make-lang.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/Make-lang.in,v
retrieving revision 1.146
diff -c -3 -p -r1.146 Make-lang.in
*** Make-lang.in        17 Oct 2004 22:51:35 -0000      1.146
--- Make-lang.in        18 Oct 2004 06:31:43 -0000
*************** java-warn = $(STRICT_WARN)
*** 124,129 ****
--- 124,133 ----
  # String length warnings
  jvspec.o-warn = -Wno-error
  
+ # Bison-1.75 output often yields (harmless) -Wtraditional warnings
+ java/parse-scan.o-warn = -Wno-error
+ java/parse.o-warn = -Wno-error
+
  # Use of non-standardized scandir
  java/jcf-io.o-warn = -Wno-error
  


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]