[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Does any other work for compile soot-dev?
On Mon, Jul 19, 2004 at 05:02:17PM +0900, Kim DongHyun wrote:
> My error message:
>
> compile:
>
> [javac] Compiling 2175 source files to /soot-dev/classes
>
> [javac]
> /soot-dev/src/soot/jimple/toolkits/annotation/callgraph/CallGraphTagger.java:33:
> reference to MethodToContexts is ambiguous, both class
> soot.jimple.toolkits.callgraph.MethodToContexts in
> soot.jimple.toolkits.callgraph and class soot.MethodToContexts in soot
> match
This is because you have some stray class files compiled from classes
that have moved. You need to get rid of them by running "ant clean".
Also make sure your CLASSPATH is empty when running ant, so that you
don't pick up stray classes from any jars that may be in your CLASSPATH.
The easy way to do this is to run ant with "CLASSPATH= ant".
Ondrej