Skip to content

Instantly share code, notes, and snippets.

View itmm's full-sized avatar

Timm Knape itmm

  • Timm Knape Softwaretechnik
  • Wehrheim, Germany
View GitHub Profile
@etaf
etaf / llvm-install.sh
Last active January 9, 2024 18:56
llvm build and install and uninstall
# Download:
git clone https://github.com/llvm/llvm-project.git
cd llvm-project/llvm
# Configure
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
# build:
cmake --build . -j $(nproc)