Implemented code generation of combined IR of all libraries

This commit is contained in:
Igor Chevdar
2019-02-19 12:43:37 +05:00
parent 49493e6dd9
commit e3efd75e55
36 changed files with 268 additions and 277 deletions
-5
View File
@@ -340,7 +340,6 @@ targetList.each { target ->
task("${target}CrossDistRuntime", type: Copy) {
dependsOn ":runtime:${target}Runtime"
dependsOn ":backend.native:${target}Stdlib"
dependsOn ":backend.native:${target}Start"
destinationDir distDir
@@ -357,10 +356,6 @@ targetList.each { target ->
include('**')
into(stdlib)
}
from(project(':runtime').file("build/${target}Start.bc")) {
rename("${target}Start.bc", 'start.bc')
into("konan/targets/$target/native")
}
if (target == 'wasm32') {
into("$stdlib/targets/wasm32/included") {
from(project(':runtime').file('src/main/js'))