Skip to content

Commit

Permalink
Install FileCheck with distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Mar 8, 2020
1 parent a41787f commit 59a4855
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Empty file removed lumen/dist/packages/.gitkeep
Empty file.
6 changes: 5 additions & 1 deletion lumen/utils/dist/build-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function configure_core() {
stage_projects="clang;clang-tools-extra;lld"
stage_runtimes="compiler-rt;libcxx;libcxxabi"
else
extra_configure_flags="-DLLVM_BUILD_UTILS=ON -DLLVM_INSTALL_UTILS=ON"
extra_configure_flags="-DLLVM_BUILD_UTILS=ON -DLLVM_INSTALL_UTILS=ON $extra_configure_flags"
if [[ ! "$triple" =~ apple ]]; then
extra_configure_flags="-DLLVM_ENABLE_LLD=ON $extra_configure_flags"
fi
Expand Down Expand Up @@ -516,6 +516,10 @@ function build_core() {
DESTDIR="${dest_dir}" ninja install \
2>&1 | tee "$log_dir/llvm.install-stage${current_stage}-${current_flavor}.log"

echo "# Installing FileCheck"
echo "# cp -f bin/FileCheck \"${dest_dir}/usr/local/bin/\""
cp -f bin/FileCheck "${dest_dir}/usr/local/bin/"

cd "$build_dir"
}

Expand Down

0 comments on commit 59a4855

Please sign in to comment.