Conversation
|
|
There was a problem hiding this comment.
Pull request overview
This PR updates the Windows installation instructions in the README.md file to improve clarity and provide more installation options for MinGW/GCC compilers. The changes reorganize the installation instructions by separating different MinGW variants and adding a new winget installation option for WinLibs.
- Restructured MinGW installation section to highlight llvm-mingw and MinGW-w64 separately
- Added winget installation command for WinLibs POSIX UCRT variant
- Clarified environment variable setup instructions with more detailed guidance
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ``` | ||
|
|
||
| Or [MinGW-w64](https://sourceforge.net/projects/mingw-w64/files) (Use recommended) or others Mingw [llvm-mingw](https://github.com/mstorsjo/llvm-mingw); | ||
| or [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) |
There was a problem hiding this comment.
Spelling error: "Mingw-w64" should be consistently capitalized. The original text used "MinGW-w64" (capital G), but this change introduces "Mingw-w64" (lowercase g). For consistency with the official project name and other references in the document, it should be "MinGW-w64".
| or [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) | |
| or [MinGW-w64](https://sourceforge.net/projects/mingw-w64/files) |
| ``` | ||
|
|
||
| Download the Mingw, then set system environment variables `C:\mingw64\bin` to the Path. | ||
| Or Download the [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) and the others gcc, then set system environment variables like `C:\mingw64\bin` to the env `Path`. |
There was a problem hiding this comment.
Spelling error: "Mingw-w64" should be consistently capitalized. The original text used "MinGW-w64" (capital G), but this change introduces "Mingw-w64" (lowercase g). For consistency with the official project name and other references in the document, it should be "MinGW-w64".
| Or Download the [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) and the others gcc, then set system environment variables like `C:\mingw64\bin` to the env `Path`. | |
| Or Download the [MinGW-w64](https://sourceforge.net/projects/mingw-w64/files) and the others gcc, then set system environment variables like `C:\mingw64\bin` to the env `Path`. |
| [Set environment variables to run GCC from command line](https://www.youtube.com/results?search_query=Set+environment+variables+to+run+GCC+from+command+line). | ||
|
|
||
| `Or the other GCC` (But you should compile the "libpng" with yourself when use the [bitmap](https://github.com/vcaesar/bitmap).) | ||
| `Or The others GCC` (Except the Mingw-w64, you should compile the "libpng" with yourself when use the [bitmap](https://github.com/vcaesar/bitmap).) |
There was a problem hiding this comment.
Grammatical error: "Or The others GCC" is grammatically incorrect. It should be either "Or other GCC implementations" or "Or the other GCC compilers" for proper English grammar.
| `Or The others GCC` (Except the Mingw-w64, you should compile the "libpng" with yourself when use the [bitmap](https://github.com/vcaesar/bitmap).) | |
| `Or other GCC implementations` (Except for Mingw-w64, you should compile "libpng" yourself when using the [bitmap](https://github.com/vcaesar/bitmap).) |
| ``` | ||
|
|
||
| Download the Mingw, then set system environment variables `C:\mingw64\bin` to the Path. | ||
| Or Download the [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) and the others gcc, then set system environment variables like `C:\mingw64\bin` to the env `Path`. |
There was a problem hiding this comment.
Grammatical error: "and the others gcc" is grammatically incorrect. It should be either "and other gcc compilers" or "and the other gcc implementations" for proper English grammar.
| Or Download the [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) and the others gcc, then set system environment variables like `C:\mingw64\bin` to the env `Path`. | |
| Or download the [Mingw-w64](https://sourceforge.net/projects/mingw-w64/files) and other GCC compilers, then set system environment variables like `C:\mingw64\bin` to the env `Path`. |
Please provide Issues links to:
Provide test code:
Description
...