try to build on windows
Some checks failed
Release Asset Audit / Release Asset Audit (push) Has been cancelled
Release Asset Audit / Notify Audit Failed (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Github Actions CodeQL / Github Actions CodeQL (push) Has been cancelled
Post-Commit Static Analyzer / post-commit-analyzer (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

This commit is contained in:
bramderaeve
2026-05-01 15:40:45 +02:00
parent 9e3c3e32b4
commit c86e331bd0

View File

@@ -1,5 +1,7 @@
## Doomhowl Interactive - Cheatsheet ## Doomhowl Interactive - Cheatsheet
### Linux
```console ```console
cmake -S llvm -B build -G Ninja \ cmake -S llvm -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=$(pwd)/install \ -DCMAKE_INSTALL_PREFIX=$(pwd)/install \
@@ -14,6 +16,14 @@ cmake --build build --parallel
cmake --build build --target install cmake --build build --target install
``` ```
### Windows
```cmd
cmake -S llvm -B build -G "Visual Studio 17 2022" -DCMAKE_INSTALL_PREFIX=%cd%\install -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_ENABLE_PROJECTS="clang;lld;clang-tools-extra;lldb"
cmake --build build --parallel
cmake --build build --target install
```
# The LLVM Compiler Infrastructure # 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) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/llvm/llvm-project/badge)](https://securityscorecards.dev/viewer/?uri=github.com/llvm/llvm-project)