Move other scripts to my scripts collection.

main
Sean Hickey 2021-11-23 13:25:18 -08:00
parent 736bd42b5b
commit 33ade274d9
2 changed files with 0 additions and 39 deletions

View File

@ -1,21 +0,0 @@
#!/usr/bin/env sh
# Build Clang from source.
# Run this from within the llvm-project directory
# https://llvm.org/docs/CMake.html
# From their wiki, potential values for Projects includes
# clang;clang-tools-extra;compiler-rt;cross-project-tests;libc;libclc;libcxx;libcxxabi;libunwind;lld;lldb;openmp;parallel-libs;polly;pstl
INSTALL_DIR=$HOME/usr/local
mkdir -p $INSTALL_DIR
cmake -S llvm -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$INSTALL_DIR \
-DLLVM_ENABLE_PROJECTS="llvm;clang;openmp"
cd build
ninja
cmake --install ./

View File

@ -1,18 +0,0 @@
#!/usr/bin/env sh
set -o errexit
mkdir build
cd build
# Source common settings
#. $HOME/usr/local/share/config.site
# Configure
cmake .. -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$HOME/usr/local \
$@
# Build
ninja