Skip to content

Commit 35053fe

Browse files
Eric BoddenEric Bodden
Eric Bodden
authored and
Eric Bodden
committed
making booster ready for 1.1 release
1 parent 59a49d6 commit 35053fe

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

Booster/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<classpath>
33
<classpathentry kind="src" path="src"/>
44
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5-
<classpathentry kind="lib" path="lib/sootclasses-trunk.jar"/>
5+
<classpathentry kind="lib" path="lib/soot-svn3509.jar"/>
66
<classpathentry kind="output" path="bin"/>
77
</classpath>

Booster/build.xml

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project name="tamiflex-booster" default="default">
3+
<property file="ant.settings"/>
4+
35
<description>
46
description
57
</description>
@@ -17,7 +19,7 @@
1719
fork="true"
1820
>
1921
<classpath>
20-
<pathelement location="lib/sootclasses-trunk.jar"/>
22+
<pathelement location="lib/soot-${soot.version}.jar"/>
2123
</classpath>
2224
<src path="src"/>
2325
</javac>
@@ -27,12 +29,13 @@
2729
<mkdir dir="META-INF"/>
2830

2931
<manifest file="META-INF/MANIFEST.MF">
30-
<attribute name="Main-Class" value="ReflInliner"/>
32+
<attribute name="Main-Class" value="de.bodden.tamiflex.booster.ReflInliner"/>
33+
<attribute name="Implementation-Version" value="${tf.version}"/>
3134
</manifest>
32-
33-
<jar destfile="lib/booster.jar" manifest="META-INF/MANIFEST.MF">
35+
36+
<jar destfile="lib/booster-${tf.version}.jar" manifest="META-INF/MANIFEST.MF">
3437
<fileset dir="bin"/>
35-
<zipfileset src="lib/sootclasses-trunk.jar"/>
38+
<zipfileset src="lib/soot-${soot.version}.jar"/>
3639
</jar>
3740
<delete dir="META-INF"/>
3841
</target>

Booster/lib/soot-svn3509.jar

6.01 MB
Binary file not shown.

Booster/src/ReflInliner.java Booster/src/de/bodden/tamiflex/booster/ReflInliner.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
package de.bodden.tamiflex.booster;
12
/*******************************************************************************
23
* Copyright (c) 2010 Eric Bodden.
34
* All rights reserved. This program and the accompanying materials
@@ -47,7 +48,7 @@ public static void main(String[] args) {
4748

4849
Options.v().set_keep_line_number(true);
4950

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

0 commit comments

Comments
 (0)