38380f0686
Currently Kotlin/Native uses default LLVM distribution. While it is useful to have whole LLVM toolchain for development, it is huge pain for users, because dependency is needlessly big. The correct solution for this problem is to make own build script for LLVM, but it is a big task that make take a while. So for now we repack LLVM dependency without unnecessary files.
28 lines
320 B
Plaintext
28 lines
320 B
Plaintext
# Compilation process
|
|
bin/clang
|
|
bin/clang++
|
|
bin/clang-8
|
|
|
|
# Linkage
|
|
bin/dsymutil
|
|
bin/lld
|
|
bin/ld.lld
|
|
bin/wasm-ld
|
|
bin/llvm-ar
|
|
|
|
# Useful utility
|
|
bin/llvm-dis
|
|
bin/c-index-test
|
|
bin/llvm-config
|
|
|
|
# Coverage support
|
|
bin/llvm-cov
|
|
bin/llvm-profdata
|
|
|
|
# Used to link runtime files
|
|
bin/llvm-link
|
|
|
|
include/**
|
|
lib/**
|
|
libexec/**
|
|
share/** |