File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 98
98
matrix :
99
99
include :
100
100
- arch : x86_64
101
- prefix : mingw-w64-x86_64
101
+ prefix : mingw-w64-clang- x86_64
102
102
defaults :
103
103
run :
104
104
shell : msys2 {0}
@@ -109,7 +109,7 @@ jobs:
109
109
- name : Setup msys2
110
110
uses : msys2/setup-msys2@v2
111
111
with :
112
- msystem : mingw64
112
+ msystem : clang64
113
113
release : false
114
114
update : true
115
115
install : >-
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ jobs:
180
180
matrix :
181
181
include :
182
182
- arch : x86_64
183
- prefix : mingw-w64-x86_64
183
+ prefix : mingw-w64-clang- x86_64
184
184
defaults :
185
185
run :
186
186
shell : msys2 {0}
@@ -191,7 +191,7 @@ jobs:
191
191
- name : Setup msys2
192
192
uses : msys2/setup-msys2@v2
193
193
with :
194
- msystem : mingw64
194
+ msystem : clang64
195
195
release : false
196
196
update : true
197
197
install : >-
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ your own machine.
58
58
### Building a Frozen Application with cx_Freeze
59
59
60
60
Follow the instructions on [ installing MSYS2] ( https://www.msys2.org/#installation ) .
61
- Once MSYS2 is installed, launch the MINGW64 environment.
61
+ Once MSYS2 is installed, launch the CLANG64 environment.
62
62
63
63
Clone the ` nicotine-plus ` Git repository:
64
64
@@ -72,7 +72,7 @@ Install dependencies:
72
72
73
73
``` sh
74
74
export ARCH=x86_64
75
- pacman --noconfirm -S --needed mingw-w64-$ARCH -python
75
+ pacman --noconfirm -S --needed mingw-w64-clang- $ARCH -python
76
76
python3 packaging/windows/dependencies.py
77
77
```
78
78
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def install_pacman():
25
25
"""Install dependencies from the main MinGW repos."""
26
26
27
27
arch = os .environ .get ("ARCH" , "x86_64" )
28
- prefix = "mingw-w64-clang-aarch64" if arch == "arm64" else "mingw-w64-x86_64"
28
+ prefix = "mingw-w64-clang-aarch64" if arch == "arm64" else "mingw-w64-clang- x86_64"
29
29
30
30
packages = [f"{ prefix } -ca-certificates" ,
31
31
f"{ prefix } -gettext-tools" ,
You can’t perform that action at this time.
0 commit comments