# HG changeset patch # User erikj # Date 1398168506 -7200 # Node ID 1fc636fbd7cf86f7254755ae1e1321a0cf754b49 # Parent 67c8504645910fcb04e4b6afe3adb68b83aa84ce 8040267: Remove forced -g from java compile lines in jaxp and jaxws Reviewed-by: mduigou, tbell, ihse diff -r 67c850464591 -r 1fc636fbd7cf jaxp/make/BuildJaxp.gmk --- a/jaxp/make/BuildJaxp.gmk Tue Apr 15 10:36:23 2014 -0700 +++ b/jaxp/make/BuildJaxp.gmk Tue Apr 22 14:08:26 2014 +0200 @@ -35,15 +35,15 @@ # The generate new bytecode uses the new compiler for to generate bytecode # for the new jdk that is being built. The code compiled by this setup # cannot necessarily be run with the boot jdk. -$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG, \ +$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE, \ JVM := $(JAVA), \ JAVAC := $(NEW_JAVAC), \ - FLAGS := -XDignore.symbol.file=true $(DISABLE_JAXP_WARNINGS) -g, \ + FLAGS := -XDignore.symbol.file=true $(DISABLE_JAXP_WARNINGS), \ SERVER_DIR := $(SJAVAC_SERVER_DIR), \ SERVER_JVM := $(SJAVAC_SERVER_JAVA))) $(eval $(call SetupJavaCompilation,BUILD_JAXP, \ - SETUP := GENERATE_NEWBYTECODE_DEBUG, \ + SETUP := GENERATE_NEWBYTECODE, \ SRC := $(JAXP_TOPDIR)/src, \ CLEAN := .properties, \ BIN := $(JAXP_OUTPUTDIR)/classes, \