b4660d03a1
Some basic launcher.js and runtime.
323 lines
8.5 KiB
Groovy
323 lines
8.5 KiB
Groovy
/*
|
|
* Copyright 2010-2017 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import groovy.io.FileType
|
|
import org.jetbrains.kotlin.konan.target.*
|
|
import org.jetbrains.kotlin.konan.properties.*
|
|
|
|
defaultTasks 'clean', 'dist'
|
|
|
|
convention.plugins.platformInfo = new PlatformInfo()
|
|
|
|
ext {
|
|
konanPropertiesFile = project(':backend.native').file('konan.properties')
|
|
konanProperties = PropertiesKt.loadProperties(konanPropertiesFile.absolutePath)
|
|
|
|
dependenciesDir = rootProject.file("dist/dependencies")
|
|
clangManager = new ClangManager(konanProperties, dependenciesDir.absolutePath)
|
|
}
|
|
|
|
allprojects {
|
|
if (path != ":dependencies") {
|
|
evaluationDependsOn(":dependencies")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url kotlinCompilerRepo
|
|
}
|
|
}
|
|
|
|
setupHostAndTarget()
|
|
loadCommandLineProperties()
|
|
loadLocalProperties()
|
|
setupClang(project)
|
|
}
|
|
|
|
void setupHostAndTarget() {
|
|
ext.hostName = TargetManager.hostName
|
|
ext.targetList = TargetManager.enabled*.userName as List
|
|
}
|
|
|
|
void setupClang(Project project) {
|
|
|
|
project.convention.plugins.clangManager = project.rootProject.ext.clangManager
|
|
project.convention.plugins.execClang = new org.jetbrains.kotlin.ExecClang(project)
|
|
|
|
project.plugins.withType(NativeComponentPlugin) {
|
|
project.model {
|
|
if (isWindows()) {
|
|
platforms {
|
|
host {
|
|
architecture 'x86_64'
|
|
}
|
|
}
|
|
|
|
components {
|
|
withType(NativeComponentSpec) {
|
|
targetPlatform 'host'
|
|
}
|
|
}
|
|
|
|
toolChains {
|
|
gcc(Gcc) {
|
|
path "$mingwWithLlvmDir/bin"
|
|
}
|
|
}
|
|
} else {
|
|
|
|
toolChains {
|
|
clang(Clang) {
|
|
hostClang.hostClangPath.each {
|
|
path it
|
|
}
|
|
|
|
eachPlatform { // TODO: will not work when cross-compiling
|
|
[cCompiler, cppCompiler, linker].each {
|
|
it.withArguments { it.addAll(project.hostClangArgs) }
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void loadLocalProperties() {
|
|
if (new File("$project.rootDir/local.properties").exists()) {
|
|
Properties props = new Properties()
|
|
props.load(new FileInputStream("$project.rootDir/local.properties"))
|
|
props.each { prop -> project.ext.set(prop.key, prop.value) }
|
|
}
|
|
}
|
|
|
|
void loadCommandLineProperties() {
|
|
if (project.hasProperty("konanc_flags")) {
|
|
throw new Error("Specify either -Ptest_flags or -Pbuild_flags.")
|
|
}
|
|
ext.globalBuildArgs = project.hasProperty("build_flags")
|
|
? ext.build_flags.split(' '): []
|
|
ext.globalTestArgs = project.hasProperty("test_flags")
|
|
? ext.test_flags.split(' '): []
|
|
ext.testTarget = project.hasProperty("test_target")
|
|
? ext.test_target: null
|
|
}
|
|
|
|
class PlatformInfo {
|
|
boolean isMac() {
|
|
return TargetManager.host == KonanTarget.MACBOOK
|
|
}
|
|
|
|
boolean isWindows() {
|
|
return TargetManager.host == KonanTarget.MINGW
|
|
}
|
|
|
|
boolean isLinux() {
|
|
return TargetManager.host == KonanTarget.LINUX
|
|
}
|
|
|
|
Throwable unsupportedPlatformException() {
|
|
return new TargetSupportException()
|
|
}
|
|
}
|
|
|
|
task dist_compiler(dependsOn: "distCompiler")
|
|
task dist_runtime(dependsOn: "distRuntime")
|
|
task cross_dist(dependsOn: "crossDist")
|
|
task list_dist(dependsOn: "listDist")
|
|
|
|
task distCompiler(type: Copy) {
|
|
dependsOn ':backend.native:jars'
|
|
dependsOn ':tools:helpers:jar'
|
|
dependsOn ':utilities:jar'
|
|
dependsOn ':klib:jar'
|
|
|
|
destinationDir file('dist')
|
|
|
|
from(project(':backend.native').file('build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project('Interop').file('Runtime/build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project('Interop').file('Indexer/build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project('Interop').file('StubGenerator/build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project(':backend.native').file('build/external_jars')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project(':backend.native').file('build/nativelibs')) {
|
|
into('konan/nativelib')
|
|
}
|
|
|
|
from(project(':Interop').file('Indexer/build/nativelibs')) {
|
|
into('konan/nativelib')
|
|
}
|
|
|
|
from(project(':Interop').file('Runtime/build/nativelibs')) {
|
|
into('konan/nativelib')
|
|
}
|
|
|
|
from(project(':llvmDebugInfoC').file('build/libs/debugInfo/shared')) {
|
|
into('konan/nativelib')
|
|
}
|
|
|
|
from(project(':utilities').file('build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(project(':klib').file('build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
|
|
from(file('cmd')) {
|
|
fileMode(0755)
|
|
into('bin')
|
|
if (!isWindows()) {
|
|
exclude('**/*.bat')
|
|
}
|
|
}
|
|
from(konanPropertiesFile) {
|
|
into('konan')
|
|
}
|
|
|
|
// TODO: check if we use native libraries copied to dist (see above) or not.
|
|
from(project(':tools:helpers').file('build/libs')) {
|
|
into('konan/lib')
|
|
}
|
|
}
|
|
|
|
task listDist(type: Exec) {
|
|
commandLine 'find', 'dist'
|
|
}
|
|
|
|
task distRuntime(type: Copy) {
|
|
dependsOn "${hostName}CrossDistRuntime"
|
|
dependsOn('commonDistRuntime')
|
|
}
|
|
|
|
task commonDistRuntime(type: Copy) {
|
|
destinationDir file('dist')
|
|
|
|
// Target independant common part.
|
|
from(project(':runtime').file("build/${hostName}Stdlib")) {
|
|
include('**')
|
|
into('klib/stdlib')
|
|
}
|
|
}
|
|
|
|
task crossDistRuntime(type: Copy) {
|
|
dependsOn.addAll(targetList.collect { "${it}CrossDistRuntime" })
|
|
dependsOn('commonDistRuntime')
|
|
}
|
|
|
|
targetList.each { target ->
|
|
task("${target}CrossDistRuntime", type: Copy) {
|
|
dependsOn ":runtime:${target}Runtime"
|
|
dependsOn ":backend.native:${target}Stdlib"
|
|
dependsOn ":backend.native:${target}Start"
|
|
|
|
destinationDir file('dist')
|
|
|
|
from(project(':runtime').file("build/$target")) {
|
|
include("*.bc")
|
|
into("klib/stdlib/targets/$target/native")
|
|
}
|
|
from(project(':runtime').file("build/${target}Stdlib")) {
|
|
include('**')
|
|
into('klib/stdlib')
|
|
}
|
|
from(project(':runtime').file("build/${target}Start.bc")) {
|
|
rename("${target}Start.bc", 'start.bc')
|
|
into("klib/stdlib/targets/$target/native")
|
|
}
|
|
if (target == 'wasm32') {
|
|
from(project(':runtime').file('src/launcher/js')) {
|
|
into('konan/nativelib')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
task dist {
|
|
dependsOn 'distCompiler', 'distRuntime'
|
|
}
|
|
|
|
task crossDist {
|
|
dependsOn 'crossDistRuntime', 'distCompiler'
|
|
}
|
|
|
|
task bundle(type: (isWindows()) ? Zip : Tar) {
|
|
dependsOn('crossDist')
|
|
def simpleOsName = TargetManager.simpleOsName()
|
|
baseName = "kotlin-native-$simpleOsName-${project.konanVersion}"
|
|
from("$project.rootDir/dist") {
|
|
include '**'
|
|
exclude 'dependencies'
|
|
into baseName
|
|
}
|
|
from(project.rootDir) {
|
|
include 'DISTRO_README.md'
|
|
rename {
|
|
return "README.md"
|
|
}
|
|
into baseName
|
|
}
|
|
from(project.rootDir) {
|
|
include 'samples/**'
|
|
include 'INTEROP.md'
|
|
include 'RELEASE_NOTES.md'
|
|
include 'GRADLE_PLUGIN.md'
|
|
exclude '**/gradle.properties'
|
|
exclude '**/settings.gradle'
|
|
exclude '**/build'
|
|
exclude '**/.gradle'
|
|
exclude 'samples/**/*.kt.bc-build'
|
|
rename('(.*)\\.for_bundle', '$1')
|
|
into baseName
|
|
}
|
|
destinationDir = file('.')
|
|
if (!isWindows()) {
|
|
extension = 'tar.gz'
|
|
compression = Compression.GZIP
|
|
}
|
|
}
|
|
|
|
task performance {
|
|
dependsOn 'dist'
|
|
dependsOn ':performance:build'
|
|
dependsOn ':performance:run'
|
|
}
|
|
|
|
task clean {
|
|
doLast {
|
|
file('dist').traverse(type: FileType.ANY, excludeNameFilter: "dependencies", maxDepth: 0) {
|
|
delete it
|
|
}
|
|
delete bundle.outputs.files
|
|
}
|
|
}
|