@@ -121,18 +121,18 @@ There are two possibilities depending on the choice of the C runtime library. Y
121
121
the legacy Microsoft Visual C++ Runtime (MSVCRT), which runs on all versions of Windows, or the
122
122
newer Universal C Runtime (UCRT64), which is used by Visual Studio but is only available by default
123
123
on Windows 10 and newer. Starting from version 13.3, binary distributions of Unicon for Windows
124
- will be built with UCRT64.
124
+ will be built with UCRT64. See msys2 [ environemts] ( https://www.msys2.org/docs/environments/ )
125
+ for more details about available environemnts and their C Library options.
125
126
126
- UCRT64:
127
+ #### 1. UCRT64:
127
128
128
129
- Download and run the installer from https://www.msys2.org/ . At the time of writing it is called
129
130
` msys2-x86_64-20230127.exe ` but it may be updated from that version.
130
131
131
132
- Go through the installation process to get a UCRT64 environment.
132
133
- Using the UCRT64 shell, Install tools required for the build:
133
134
```
134
- pacman -S mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-diffutils
135
- pacman -S make git
135
+ pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-diffutils git
136
136
```
137
137
- Install the optional libraries for a full build (Unicon will build without them but some features
138
138
will be absent).
158
158
Note that, although the build environment is UCRT64, the resulting Unicon binaries may also be
159
159
run from the standard Windows command line ` cmd ` terminal.
160
160
161
- MSVCRT:
161
+ #### 2. MSVCRT (Legacy) :
162
162
163
163
- Download and run [ mingw-get-setup.exe] ( https://sourceforge.net/projects/mingw/files/Installer/ )
164
164
@@ -172,7 +172,7 @@ Note that you maybe missing the tool "make". TDM MinGW comes with a "make" that
172
172
That file can be found under the insallation directory of MinGW64 inside the bin directory.
173
173
create a copy of that file and name it "make.exe" before continuing.
174
174
175
- - Clone the Unicon repository (same options as UCRT64).
175
+ - Clone the Unicon repository (same steps as UCRT64 above ).
176
176
177
177
After that you can use the standard Windows command line ` cmd ` terminal to build Unicon.
178
178
```
0 commit comments