Removed obsolete -mode CLI parameter.

This commit is contained in:
Evgeny Gerashchenko
2012-07-05 17:46:48 +04:00
parent 531167bcee
commit a02658b1a6
5 changed files with 2 additions and 20 deletions
-4
View File
@@ -415,8 +415,6 @@
<arg value="-output"/>
<arg value="${output}/classes/stdlib"/>
<arg value="-noStdlib"/>
<arg value="-mode"/>
<arg value="stdlib"/>
<arg value="-classpath"/>
<arg value="${output}/classes/runtime"/>
</java>
@@ -448,8 +446,6 @@
<arg value="-output"/>
<arg value="${output}/classes/lang"/>
<arg value="-noStdlib"/>
<arg value="-mode"/>
<arg value="builtins"/>
<arg value="-builtins"/>
</java>
@@ -74,9 +74,6 @@ public class K2JVMCompilerArguments extends CompilerArguments {
@Argument(value = "jdkAnnotations", description = "Path to the kotlin-jdk-annotations.jar")
public String jdkAnnotations;
@Argument(value = "mode", description = "Special compiler modes: stubs or jdkHeaders")
public String mode;
@Argument(value = "output", description = "output directory")
public String outputDir;
@@ -163,14 +160,6 @@ public class K2JVMCompilerArguments extends CompilerArguments {
this.stdlib = stdlib;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
@Override
public boolean isTags() {
return tags;
@@ -39,8 +39,7 @@ public class ForTestCompileBuiltins {
@Override
protected void doCompile(@NotNull File classesDir) throws Exception {
ExitCode exitCode = new K2JVMCompiler().exec(
System.err, "-output", classesDir.getPath(), "-src", "./compiler/frontend/src", "-noStdlib", "-mode", "builtins",
"-builtins");
System.err, "-output", classesDir.getPath(), "-src", "./compiler/frontend/src", "-noStdlib", "-builtins");
if (exitCode != ExitCode.OK) {
throw new IllegalStateException("builtins compilation failed: " + exitCode);
}
@@ -62,7 +62,6 @@ public class ForTestCompileRuntime {
"-output", destdir.getPath(),
"-src", "./libraries/stdlib/src",
"-noStdlib",
"-mode", "stdlib",
"-classpath", "out/production/runtime");
if (exitCode != ExitCode.OK) {
throw new IllegalStateException("stdlib for test compilation failed: " + exitCode);
@@ -270,8 +270,7 @@ public class JetCompiler implements TranslatingCompiler {
"-module", scriptFile.getAbsolutePath(),
"-output", path(outputDir),
"-tags", "-verbose", "-version",
"-noStdlib", "-noJdkAnnotations", "-noJdk",
"-mode", "idea"};
"-noStdlib", "-noJdkAnnotations", "-noJdk"};
}
private static void runOutOfProcess(final CompileContext compileContext,