build/gradle/cli compiler flags usage fix (#2045)

This commit is contained in:
Vasily Levchenko
2018-09-12 17:02:31 +03:00
committed by Nikolay Igotti
parent 20d3520717
commit 66732675e5
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ targetList.each { target ->
if (target != "wasm32") defaultArgs += '-g'
def konanArgs = [*defaultArgs,
'-target', target,
'-Xruntime', project(':runtime').file("build/${target}/runtime.bc"),
"-Xruntime=${project(':runtime').file('build/' + target +'/runtime.bc')}",
*project.globalBuildArgs]
task("${target}Stdlib", type: JavaExec) {