changeset 50:19c316392d9e

6829575: 100028: Debug information is incomplete or missing Summary: Enable debugging in many places Reviewed-by: ohair Contributed-by: Andrew Haley <aph@redhat.com>
author aph
date Fri, 17 Apr 2009 15:55:53 +0100
parents c197c6801271
children 7967d26b229c
files make/Makefile make/build.xml
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/make/Makefile	Thu Apr 16 11:22:45 2009 -0700
+++ b/make/Makefile	Fri Apr 17 15:55:53 2009 +0100
@@ -69,6 +69,14 @@
   endif
 endif
 
+ifeq ($(DEBUG_CLASSFILES), true)
+  ANT_OPTIONS += -Djavac.debug=true
+  ANT_OPTIONS += -Djavac.debuglevel=source,lines,vars
+else
+  ANT_OPTIONS += -Djavac.debug=false
+  ANT_OPTIONS += -Djavac.debuglevel=
+endif
+
 # Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
 # and the somewhat misnamed CLASS_VERSION (-target NN)
 ifdef TARGET_CLASS_VERSION
--- a/make/build.xml	Thu Apr 16 11:22:45 2009 -0700
+++ b/make/build.xml	Fri Apr 17 15:55:53 2009 +0100
@@ -85,6 +85,7 @@
              destdir="${build.classes.dir}"
              memoryInitialSize="${javac.memoryInitialSize}"
              memoryMaximumSize="${javac.memoryMaximumSize}"
+	     debug="${javac.debug}"
              target="${javac.target}">
          <compilerarg value="-J-Xbootclasspath/p:${bootstrap.dir}/lib/javac.jar"/>
          <compilerarg line="${javac.version.opt}"/>