cheatsheet
Some checks failed
Release Asset Audit / Release Asset Audit (push) Has been cancelled
Release Asset Audit / Notify Audit Failed (push) Has been cancelled
Build and Test libc++ / stage1 (clang-23, frozen-cxx03-headers, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage1 (clang-23, generic-cxx03, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage1 (clang-23, generic-cxx26, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage1 (clang-23, generic-modules, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage1 (gcc-15, generic-gcc, g++-15) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-21, generic-cxx26, clang++-21) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-22, generic-cxx26, clang++-22) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-23, generic-cxx11, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-23, generic-cxx14, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-23, generic-cxx17, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-23, generic-cxx20, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage2 (clang-23, generic-cxx23, clang++-23) (push) Has been cancelled
Build and Test libc++ / stage2 (gcc-15, generic-gcc-cxx11, g++-15) (push) Has been cancelled
Build and Test libc++ / stage3 (bootstrapping-build) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-abi-unstable) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-asan) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-asan-in-tests-only) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-hardening-mode-debug) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-hardening-mode-extensive) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-hardening-mode-extensive-observe-semantic) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-hardening-mode-fast) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-hardening-mode-fast-with-abi-breaks) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-llvm-libc) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-merged) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-modules-cxx17-lsv) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-msan) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-exceptions) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-experimental) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-filesystem) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-localization) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-random_device) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-rtti) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-threads) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-tzdb) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-unicode) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-no-wide-characters) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-optimized-speed) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-static) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-tsan) (push) Has been cancelled
Build and Test libc++ / stage3 (generic-ubsan) (push) Has been cancelled
Build and Test libc++ / macos (apple-configuration, macos-26) (push) Has been cancelled
Build and Test libc++ / macos (apple-system, macos-26) (push) Has been cancelled
Build and Test libc++ / macos (apple-system-hardened, macos-26) (push) Has been cancelled
Build and Test libc++ / macos (generic-cxx03, macos-26) (push) Has been cancelled
Build and Test libc++ / macos (generic-cxx23, macos-26) (push) Has been cancelled
Build and Test libc++ / macos (generic-modules, macos-26) (push) Has been cancelled
Build and Test libc++ / windows (cc, mingw-dll, c++, true) (push) Has been cancelled
Build and Test libc++ / windows (cc, mingw-incomplete-sysroot, c++, true) (push) Has been cancelled
Build and Test libc++ / windows (cc, mingw-static, c++, true) (push) Has been cancelled
Build and Test libc++ / windows (cc, mingw-static, c++, true, windows-11-arm) (push) Has been cancelled
Build and Test libc++ / windows (clang-cl, clang-cl-debug, clang-cl, false) (push) Has been cancelled
Build and Test libc++ / windows (clang-cl, clang-cl-dll, clang-cl, false) (push) Has been cancelled
Build and Test libc++ / windows (clang-cl, clang-cl-no-vcruntime, clang-cl, false) (push) Has been cancelled
Build and Test libc++ / windows (clang-cl, clang-cl-static, clang-cl, false) (push) Has been cancelled
Build and Test libc++ / windows (clang-cl, clang-cl-static-crt, clang-cl, false) (push) Has been cancelled
Build and Test libc++ / windows (i686-w64-mingw32-clang, mingw-dll, i686-w64-mingw32-clang++, true) (push) Has been cancelled
Commit Access Review / commit-access-review (push) Has been cancelled

This commit is contained in:
bramtechs
2026-05-01 01:45:48 +02:00
parent bc97fbe489
commit 9e3c3e32b4
2 changed files with 18 additions and 0 deletions

2
.gitignore vendored
View File

@@ -6,6 +6,8 @@
# as most of those are useless.
#==============================================================================#
install
#==============================================================================#
# File extensions to be ignored anywhere in the tree.
#==============================================================================#

View File

@@ -1,3 +1,19 @@
## Doomhowl Interactive - Cheatsheet
```console
cmake -S llvm -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_COMPILER=clang-21 \
-DCMAKE_CXX_COMPILER=clang++-21 \
-DLLVM_ENABLE_PROJECTS="clang;lld;clang-tools-extra;lldb" \
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;compiler-rt;libunwind" \
-DLLVM_USE_LINKER=mold
cmake --build build --parallel
cmake --build build --target install
```
# The LLVM Compiler Infrastructure
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/llvm/llvm-project/badge)](https://securityscorecards.dev/viewer/?uri=github.com/llvm/llvm-project)