From 357c63503959a68aa2624414aa068738b01cf55c Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Mon, 29 Jun 2026 19:07:34 +0900 Subject: [PATCH] docs: correct the Windows compiler claim in README The build requirements listed "MSVC >= VS 2019", but CI never builds with the MSVC cl compiler. The Windows lane uses clang-cl (clang with the MSVC ABI) under the MSVC toolchain, because the project's glib dependency is exercised there via clang-cl, not cl. GCC is covered on Linux and Clang on macOS. State the compilers that are actually supported and tested, and drop the unverified VS 2019 floor. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21c9894..3d87159 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ meson test -C builddir The build requires: -- a C17 compiler (GCC, Clang, or MSVC ≥ VS 2019) +- a C17 compiler: GCC, Clang, or (on Windows) clang-cl with the MSVC toolchain - Meson `>= 1.1.0` - GLib `>= 2.68` development headers