Allow -Pkonanc_flags="-print_bitcode" for gradle commands.

This commit is contained in:
Alexander Gorshenev
2016-12-14 15:49:06 +03:00
committed by alexander-gorshenev
parent 175dc9fb14
commit f5a627f6ff
3 changed files with 23 additions and 15 deletions
+4
View File
@@ -170,6 +170,8 @@ task stdlib(type: JavaExec) {
args '-output', project(':runtime').file('build/stdlib.kt.bc')
args project.globalArgs
jvmArgs '-ea', "-Djava.library.path=${project.buildDir}/nativelibs"
dependsOn ':runtime:build'
@@ -191,6 +193,8 @@ task start(type: JavaExec) {
args '-output', project(':runtime').file('build/start.kt.bc')
args project.globalArgs
jvmArgs '-ea', "-Djava.library.path=${project.buildDir}/nativelibs"
dependsOn 'stdlib'