-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a page for repos and mirrors and one for package names
To keep the environment overview less overloaded.
- Loading branch information
Showing
4 changed files
with
62 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Package Naming | ||
|
||
| | Package prefix | | ||
|----------------------------------------------------------|----------------------------| | ||
| ![msys](msys.png){: style="max-width:25px" } | None | | ||
| ![mingw64](mingw64.png){: style="max-width:25px" } | `mingw-w64-x86_64-` | | ||
| ![ucrt64](ucrt64.png){: style="max-width:25px" } | `mingw-w64-ucrt-x86_64-` | | ||
| ![clang64](clang64.png){: style="max-width:25px" } | `mingw-w64-clang-x86_64-` | | ||
| ![mingw32](mingw32.png){: style="max-width:25px" } | `mingw-w64-i686-` | | ||
| ![clang32](clang32.png){: style="max-width:25px" } | `mingw-w64-clang-i686-` | | ||
| ![clangarm64](clangarm64.png){: style="max-width:25px" } | `mingw-w64-clang-aarch64-` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Repositories and Mirrors | ||
|
||
## Active environments | ||
|
||
The package manager uses only environments that are configured under `/etc/pacman.conf`. | ||
You may add/uncomment/remove/comment those as needed: | ||
|
||
```pkgconf | ||
# always include msys! | ||
[msys] | ||
Include = /etc/pacman.d/mirrorlist.msys | ||
[mingw32] | ||
Include = /etc/pacman.d/mirrorlist.mingw | ||
[mingw64] | ||
Include = /etc/pacman.d/mirrorlist.mingw | ||
[ucrt64] | ||
Include = /etc/pacman.d/mirrorlist.mingw | ||
[clang64] | ||
Include = /etc/pacman.d/mirrorlist.mingw | ||
[clang32] | ||
Include = /etc/pacman.d/mirrorlist.mingw | ||
#[clangarm64] | ||
#Include = /etc/pacman.d/mirrorlist.mingw | ||
``` | ||
|
||
For more details about how to install packages see ['Package Management'](package-management.md). | ||
|
||
To launch an environment either use the wrapper executables like `ucrt64.exe` or | ||
call `msys2_shell.cmd` with either the matching parameter like `msys2_shell.cmd -clang64` | ||
or by setting `MSYSTEM`. |