From: <th...@us...> - 2009-04-01 02:22:50
|
Revision: 6144 http://jython.svn.sourceforge.net/jython/?rev=6144&view=rev Author: thobes Date: 2009-04-01 01:37:23 +0000 (Wed, 01 Apr 2009) Log Message: ----------- Moved the SSA compiler to Kenai. Modified Paths: -------------- trunk/sandbox/tobias/.classpath trunk/sandbox/tobias/build.xml Removed Paths: ------------- trunk/sandbox/tobias/compiler/src/org/thobe/ Property Changed: ---------------- trunk/sandbox/tobias/ Property changes on: trunk/sandbox/tobias ___________________________________________________________________ Modified: svn:externals - jython https://jython.svn.sourceforge.net/svnroot/jython/trunk/jython frame https://kenai.com/svn/jvm-frame-introspect~svn/frame + jython https://jython.svn.sourceforge.net/svnroot/jython/trunk/jython frame https://kenai.com/svn/jvm-frame-introspect~svn/frame ssa https://kenai.com/svn/ssa-compiler~svn-temprep/trunk Modified: trunk/sandbox/tobias/.classpath =================================================================== --- trunk/sandbox/tobias/.classpath 2009-04-01 00:07:49 UTC (rev 6143) +++ trunk/sandbox/tobias/.classpath 2009-04-01 01:37:23 UTC (rev 6144) @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry excluding="com/ziclix/python/sql/|com/ziclix/python/sql/connect/|com/ziclix/python/sql/handler/|com/ziclix/python/sql/pipe/|com/ziclix/python/sql/pipe/csv/|com/ziclix/python/sql/pipe/db/|com/ziclix/python/sql/procedure/|com/ziclix/python/sql/resource/|com/ziclix/python/sql/util/" kind="src" path="jython/src"/> + <classpathentry kind="src" path="ssa/src"/> <classpathentry excluding="org/python/compiler/advanced/ast/" kind="src" path="compiler/src"/> - <classpathentry kind="src" path="util/src"/> + <classpathentry excluding="org/python/code/CodeTable.java|org/python/code/SpecializedCode.java|org/python/frame/JavaFrameAccessor.java" kind="src" path="util/src"/> <classpathentry kind="src" path="bytecode/src"/> <classpathentry kind="src" path="agent/src"/> <classpathentry kind="src" path="frame/src"/> Modified: trunk/sandbox/tobias/build.xml =================================================================== --- trunk/sandbox/tobias/build.xml 2009-04-01 00:07:49 UTC (rev 6143) +++ trunk/sandbox/tobias/build.xml 2009-04-01 01:37:23 UTC (rev 6144) @@ -56,7 +56,7 @@ <target name="setup target"> <mkdir dir="${target.dir}"/> </target> - <target name="clean" depends="clean jython,clean compiler,clean agent,clean bytecode,clean util,clean frame"> + <target name="clean" depends="clean jython,clean compiler,clean ssa,clean agent,clean bytecode,clean util,clean frame"> <delete dir="${target.dir}"/> </target> @@ -79,10 +79,23 @@ </ant> </target> - <target name="compiler" depends="setup target,jython,agent,util,bytecode"> + <target name="ssa"> + <echo>Building the SSA subproject</echo> + <ant dir="${basedir}/ssa" inheritAll="false"> + <property name="target.dir" location="${target.dir}"/> + </ant> + </target> + <target name="clean ssa"> + <ant dir="${basedir}/ssa" inheritAll="false" target="clean"> + <property name="target.dir" location="${target.dir}"/> + </ant> + </target> + + <target name="compiler" depends="setup target,jython,ssa,agent,util,bytecode"> <echo>Building the compiler subproject</echo> <ant dir="${basedir}/compiler" inheritAll="false"> <property name="jython.jar" location="${target.dir}/dist/jython-dev.jar"/> + <property name="ssa.jar" location="${target.dir}/ssa.jar"/> <property name="agent.jar" location="${target.dir}/agent-user.jar"/> <property name="antlr.jar" location="${target.dir}/dist/javalib/antlr-runtime-3.1.2.jar"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |