File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 27
27
with :
28
28
fetch-depth : 0
29
29
30
+ - name : Set up MSVC environment
31
+ uses : ilammy/msvc-dev-cmd@v1
32
+ with :
33
+ arch : arm64
34
+
30
35
- name : Build wheels
31
36
32
37
with :
37
42
CIBW_PLATFORM : ' windows'
38
43
CIBW_ARCHS : ' ARM64'
39
44
CIBW_BEFORE_BUILD_WINDOWS : |
40
- call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" arm64
41
- where cl.exe || (echo cl.exe not found && exit 1)
45
+ echo "Searching for cl.exe..."
46
+ where cl.exe || echo "cl.exe not found in PATH"
47
+ echo "Searching for link.exe..."
48
+ where link.exe || echo "link.exe not found in PATH"
49
+ echo "Searching for nmake.exe..."
50
+ where nmake.exe || echo "nmake.exe not found in PATH"
51
+ echo "Current PATH:"
52
+ echo %PATH%
42
53
bash scripts/cibw_before_build_windows.sh
43
54
CIBW_ENVIRONMENT_WINDOWS : |
44
55
CC=cl.exe
You can’t perform that action at this time.
0 commit comments