classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: Don't use ecj 1.5 warning flags for trunk


From: Mark Wielaard
Subject: [cp-patches] FYI: Don't use ecj 1.5 warning flags for trunk
Date: Mon, 05 Dec 2005 14:24:22 +0100

Hi,

This fixes an issue pointed out by Dalibor. We were using a couple of
warning flags for 1.5 constructs even for the non-generics branch. Since
not all versions of ecj support these we should not use them on the
trunk.

2005-12-05  Mark Wielaard  <address@hidden>

    Fixes bug classpath/25257
    * lib/Makefile.am (FOUND_ECJ): Remove -warn typeHiding, unchecked and
    varargsCast flags for non-generic code.

Committed,

Mark

diff -u -r1.104 Makefile.am
--- lib/Makefile.am     2 Nov 2005 21:21:33 -0000       1.104
+++ lib/Makefile.am     5 Dec 2005 13:19:42 -0000
@@ -29,7 +29,7 @@
 JAVAC = $(GCJX) -encoding UTF-8 -classpath .:$(USER_CLASSLIB) -d . @classes
 else
 if FOUND_ECJ
-JAVAC = $(ECJ) -source 1.4 -encoding UTF-8 
-warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast 
-proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
+JAVAC = $(ECJ) -source 1.4 -encoding UTF-8 -warn:-deprecation,serial,unused 
-proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
 endif # FOUND_ECJ
 endif # FOUND_GCJX
 endif # FOUND_KJC

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]