1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 08:38:13 -07:00

Restore -no-stdlib.

This commit is contained in:
Cedric Beust 2016-02-04 22:55:56 +04:00
parent 44bc37881e
commit c44ba24a93

View file

@ -152,7 +152,7 @@ class KConfiguration @Inject constructor(val compiler: KotlinCompiler){
fun compilerArgs(s: List<String>) = args.addAll(s)
fun compile(project: Project? = null, context: KobaltContext? = null) : TaskResult {
return compiler.compile(project, context, dependencies, classpath, source, output, args /* + "-no-stdlib" */)
return compiler.compile(project, context, dependencies, classpath, source, output, args + "-no-stdlib")
}
}