LLVM Build Infrastructure

package.py script automates downloading, building and packing of LLVM distribution used by Kotlin/Native.

Requirements

Usage

Just run

python3 package.py

It will create a llvm-distribution folder which contains LLVM distribution.
Note that build will take a lot of time and all your machine cores. 😈
See HACKING.md on how to use freshly built distribution.

Building distribution for end-users

By default, package.py installs a lot of LLVM components that is not really required to use Kotlin/Native compiler. To build only essential parts, run the following command:

python3 package.py --build-targets install-distribution --distribution-components $DISTRIBUTION_COMPONENTS

Set of required $DISTRIBUTION_COMPONENTS depends on OS:

OSDistribution components
Windowsclang libclang lld llvm-cov llvm-profdata llvm-ar clang-resource-headers
macOSclang libclang lld llvm-cov llvm-profdata llvm-ar clang-resource-headers
Linuxclang libclang lld llvm-cov llvm-profdata llvm-ar clang-resource-headers compiler-rt

Tuning

Run python3 package.py -h to check how one can tune script's behavior. Some examples:

  • --pack creates an archive (zip on Windows, tar.gz on macOS and Linux) with distribution alongside with its SHA256.
  • --install-path allows overriding distribution's output directory.
  • --num-stages specifies number of steps in build. Passing 2 or more makes bootstrap build which means that LLVM will build itself by using distribution from the previous step.
  • --stage0 allows using existing LLVM toolchain for bootstrapping.
  • --build-targets specifies what targets will be passed to Ninja.
  • --distribution-components is a list of components that will be installed with install-distribution build target.

Docker

Linux

You can use Docker to build LLVM for Linux:

docker build -t kotlin-llvm-builder --file images/linux/Dockerfile .
docker run --rm -it -v <HOST_PATH>:/output kotlin-llvm-builder --install-path /output/llvm-<version>-x86_64-linux --pack

Windows

[!WARNING]
Windows containers support is experimental

If your host machine is Windows, you can use Windows Docker container to build LLVM for Windows:

docker build -t kotlin-llvm-builder --file images/windows/Dockerfile .
docker run --rm -it -v <HOST_PATH>:/output kotlin-llvm-builder --instal-path /output/llvm-<version>-x86_64-windows --pack

Known problems

  1. No way to run LLVM tests out of the box.