|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sun Nov 5 00:52:17 CET 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/11 05:00:52 Modified: jop build.xml Log: removed handle flag in JOPSim (no non-handle version anymore) debug option for WCET analysis Revision Changes Path 1.6 jop/build.xml http://www.opencores.org/cvsweb.shtml/jop/build.xml.diff?r1=1.5&r2=1.6 (In the diff below, changes in quantity of whitespace are not shown.) Index: build.xml =================================================================== RCS file: /cvsroot/martin/jop/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- build.xml 31 Oct 2006 14:26:54 -0000 1.5 +++ build.xml 4 Nov 2006 23:52:16 -0000 1.6 @@ -227,13 +227,19 @@ <javac destdir="${target}/dist/classes" sourcepathref="target-source" - source="1.4"> + source="1.4" + includeAntRuntime="false" + debug="true"> <!-- We want to force bootclasspath, extdirs, and classpath to be empty, but Ant makes this difficult. --> <!-- If any of these are an empty string, Ant uses the default instead. So, we give them dummy values. --> <!-- This works for all but classpath, for which Ant removes any non-existent paths. --> +<!-- MS: I did this for Java 1.5 tests with the collection classes + don't remember if it is necessary for 1.5 - probably cleaner + for building a target with it's own JDK <bootclasspath path="null"/> <extdirs path="null"/> <classpath path="null"/> +--> <src path="${target}/src/common"/> <include name="com/jopdesign/sys/*.java"/> </javac> @@ -241,13 +247,19 @@ <javac destdir="${target}/dist/classes" sourcepathref="target-source" - source="1.4"> + source="1.4" + includeAntRuntime="false" + debug="true"> <!-- We want to force bootclasspath, extdirs, and classpath to be empty, but Ant makes this difficult. --> <!-- If any of these are an empty string, Ant uses the default instead. So, we give them dummy values. --> <!-- This works for all but classpath, for which Ant removes any non-existent paths. --> +<!-- MS: I did this for Java 1.5 tests with the collection classes + don't remember if it is necessary for 1.5 - probably cleaner + for building a target with it's own JDK <bootclasspath path="null"/> <extdirs path="null"/> <classpath path="null"/> +--> <src path="${basedir}"/> <include name="${target-app}"/> </javac> @@ -388,7 +400,6 @@ <target name="jsim" depends="java-app" description="JopSim target without the tools"> <java classname="com.jopdesign.tools.JopSim" failonerror="true" fork="true"> <sysproperty key="log" value="false"/> - <sysproperty key="handle" value="true"/> <classpath> <pathelement location="java/tools/dist/lib/jop-tools.jar"/> </classpath>
|
 |