Skip to content

Instantly share code, notes, and snippets.

View richardfearn's full-sized avatar
🏠

Richard Fearn richardfearn

🏠
View GitHub Profile
@cdman
cdman / debug_jdk.xml
Created November 30, 2014 19:28
Ant script to recompile the JDK runtime with full debug symbols
<project name="create rt_debug.jar" default="makejar" basedir=".">
<target name="init">
<property environment="env"/>
<property name="project.build" location="build"/>
<property name="project.src" location="${project.build}/src"/>
<property name="project.classes" location="${project.build}/classes"/>
<property name="project.dist" location="${project.build}/dist"/>
<path id="project.classpath">
<fileset dir="${env.JAVA_HOME}/jre/lib">
<include name="*.jar"/>