Command line args changed

This commit is contained in:
Maxim Shafirov
2012-01-24 18:38:55 +04:00
parent 81ef081a87
commit ad9ee0eda8
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -46,7 +46,6 @@
<path refid="classpath"/>
<pathelement location="${output}/kotlin-compiler.jar"/>
</classpath>
<arg value="-excludeStdlib"/>
<arg value="-src"/>
<arg value="${basedir}/stdlib/ktSrc"/>
<arg value="-output"/>
@@ -40,7 +40,7 @@ public class KotlinCompiler {
}
private static void usage(PrintStream target) {
target.println("Usage: KotlinCompiler [-output <outputDir>|-jar <jarFileName>] [-src <filename or dirname>|-module <module file>] [-includeRuntime] [-excludeStdlib]");
target.println("Usage: KotlinCompiler [-output <outputDir>|-jar <jarFileName>] [-stdlib <path to runtime.jar>] [-src <filename or dirname>|-module <module file>] [-includeRuntime]");
}
public static void main(String ... args) {