From e39695bf1c16b298552336fc2c063f4a88a46a45 Mon Sep 17 00:00:00 2001 From: Maksim Bondarenkov <119937608+ognevny@users.noreply.github.com> Date: Mon, 30 Sep 2024 09:38:49 +0300 Subject: [PATCH] docs: Update msys2 section in development/windows (#18385) merge after https://packages.msys2.org/packages/mingw-w64-clang-x86_64-zed is available. alternatively you can check the [queue](https://packages.msys2.org/queue) for build status Zed now compiles and runs under msys2/CLANG64 environment, so change the docs to give the users a choice of their environment Release Notes: - N/A --- docs/src/development/windows.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/development/windows.md b/docs/src/development/windows.md index 86eb21965e550e5b86ed332713fc881220cf4fb8..67808186d1961b98399b296b0a453ce2dc286d4e 100644 --- a/docs/src/development/windows.md +++ b/docs/src/development/windows.md @@ -63,16 +63,16 @@ cargo test --workspace ## Installing from msys2 -[MSYS2](https://msys2.org/) distribution provides Zed as a package [mingw-w64-zed](https://packages.msys2.org/base/mingw-w64-zed). To download the prebuilt binary, run +[MSYS2](https://msys2.org/) distribution provides Zed as a package [mingw-w64-zed](https://packages.msys2.org/base/mingw-w64-zed). The package is available for UCRT64 and CLANG64. To download it, run ```sh pacman -Syu -pacman -S mingw-w64-ucrt-x86_64-zed +pacman -S $MINGW_PACKAGE_PREFIX-zed ``` -then you can run `zed` in a UCRT64 shell. +then you can run `zed` in a shell. -You can see the [build script](https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-zed/PKGBUILD) for more details. +You can see the [build script](https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-zed/PKGBUILD) for more details on build process. > Please, report any issue in [msys2/MINGW-packages/issues](https://github.com/msys2/MINGW-packages/issues?q=is%3Aissue+is%3Aopen+zed) first.