Skip to content

Commit

Permalink
making booster ready for 1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Bodden authored and Eric Bodden committed Aug 4, 2010
1 parent 59a49d6 commit 35053fe
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Booster/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/sootclasses-trunk.jar"/>
<classpathentry kind="lib" path="lib/soot-svn3509.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
13 changes: 8 additions & 5 deletions Booster/build.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="tamiflex-booster" default="default">
<property file="ant.settings"/>

<description>
description
</description>
Expand All @@ -17,7 +19,7 @@
fork="true"
>
<classpath>
<pathelement location="lib/sootclasses-trunk.jar"/>
<pathelement location="lib/soot-${soot.version}.jar"/>
</classpath>
<src path="src"/>
</javac>
Expand All @@ -27,12 +29,13 @@
<mkdir dir="META-INF"/>

<manifest file="META-INF/MANIFEST.MF">
<attribute name="Main-Class" value="ReflInliner"/>
<attribute name="Main-Class" value="de.bodden.tamiflex.booster.ReflInliner"/>
<attribute name="Implementation-Version" value="${tf.version}"/>
</manifest>

<jar destfile="lib/booster.jar" manifest="META-INF/MANIFEST.MF">
<jar destfile="lib/booster-${tf.version}.jar" manifest="META-INF/MANIFEST.MF">
<fileset dir="bin"/>
<zipfileset src="lib/sootclasses-trunk.jar"/>
<zipfileset src="lib/soot-${soot.version}.jar"/>
</jar>
<delete dir="META-INF"/>
</target>
Expand Down
Binary file added Booster/lib/soot-svn3509.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package de.bodden.tamiflex.booster;
/*******************************************************************************
* Copyright (c) 2010 Eric Bodden.
* All rights reserved. This program and the accompanying materials
Expand Down Expand Up @@ -47,7 +48,7 @@ public static void main(String[] args) {

Options.v().set_keep_line_number(true);

G.v().out.println("TamiFlex Booster");
G.v().out.println("TamiFlex Booster Version "+ReflInliner.class.getPackage().getImplementationVersion());
try {
soot.Main.main(argList.toArray(new String[0]));
} catch(CompilationDeathException e) {
Expand Down

0 comments on commit 35053fe

Please sign in to comment.