[K/N] Add LLVM utils into developer LLVM distribution.

Including FileCheck utility.
This commit is contained in:
Sergey Bogolepov
2021-09-29 19:40:17 +07:00
committed by Space
parent 5c1a4f79c4
commit b692705092
2 changed files with 12 additions and 9 deletions
+8 -8
View File
@@ -36,10 +36,10 @@ homeDependencyCache = .konan/cache
reducedLlvmAppendix = compact
predefinedLlvmDistributions = \
apple-llvm-20200714-macos-x64 \
apple-llvm-20200714-macos-aarch64 \
llvm-11.1.0-linux-x64-1 \
llvm-11.1.0-windows-x64 \
apple-llvm-20200714-macos-x64-1 \
apple-llvm-20200714-macos-aarch64-1 \
llvm-11.1.0-linux-x64-2 \
llvm-11.1.0-windows-x64-2 \
apple-llvm-20200714-macos-x64-essentials \
apple-llvm-20200714-macos-aarch64-essentials \
llvm-11.1.0-linux-x64-essentials \
@@ -51,16 +51,16 @@ predefinedLibffiVersions = \
libffi-3.2.1-2-linux-x86-64 \
libffi-3.3-windows-x64-1
llvm.linux_x64.dev = llvm-11.1.0-linux-x64-1
llvm.linux_x64.dev = llvm-11.1.0-linux-x64-2
llvm.linux_x64.user = llvm-11.1.0-linux-x64-essentials
llvm.mingw_x64.dev = llvm-11.1.0-windows-x64
llvm.mingw_x64.dev = llvm-11.1.0-windows-x64-2
llvm.mingw_x64.user = llvm-11.1.0-windows-x64-essentials
llvm.macos_x64.dev = apple-llvm-20200714-macos-x64
llvm.macos_x64.dev = apple-llvm-20200714-macos-x64-1
llvm.macos_x64.user = apple-llvm-20200714-macos-x64-essentials
llvm.macos_arm64.dev = apple-llvm-20200714-macos-aarch64
llvm.macos_arm64.dev = apple-llvm-20200714-macos-aarch64-1
llvm.macos_arm64.user = apple-llvm-20200714-macos-aarch64-essentials
# By default LLVM uses 250 for -03 builds.
+4 -1
View File
@@ -108,7 +108,10 @@ def construct_cmake_flags(
'-DLLVM_ENABLE_Z3_SOLVER=OFF',
'-DCOMPILER_RT_BUILD_BUILTINS=ON',
'-DLLVM_ENABLE_THREADS=ON',
'-DLLVM_OPTIMIZED_TABLEGEN=ON'
'-DLLVM_OPTIMIZED_TABLEGEN=ON',
'-DLLVM_ENABLE_IDE=OFF',
'-DLLVM_BUILD_UTILS=ON',
'-DLLVM_INSTALL_UTILS=ON'
]
if not building_bootstrap:
if distribution_components: