From a6b89b88742827bd0706b805df0aea65fca763f7 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Thu, 10 Oct 2013 18:54:13 +0400 Subject: [PATCH] Add kotlin-runtime to compiler classpath --- .../org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java b/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java index e37c7bca203..6e0cbdc1291 100644 --- a/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java +++ b/ide-compiler-runner/src/org/jetbrains/jet/compiler/runner/CompilerRunnerUtil.java @@ -48,6 +48,7 @@ public class CompilerRunnerUtil { ArrayList answer = new ArrayList(); answer.add(new File(libs, "kotlin-compiler.jar")); + answer.add(new File(libs, "kotlin-runtime.jar")); return answer; }