File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -47,19 +47,21 @@ jobs:
47
47
choco install -y zip
48
48
49
49
- run : |
50
- # use an older package since the x86 package overrides the x64 one,
51
- # and ends up deleting make.exe
52
- choco install -y mingw --forcex86 --force --version=7.3.0
50
+ choco install -y mingw --forcex86 --force --version=8.1.0
51
+ choco install -y make
53
52
name: Install 32-bit mingw
54
53
shell: powershell
55
54
if: ${{ matrix.BUILD_BITS == '32' }}
56
55
57
56
- run : |
58
57
# see https://www.mail-archive.com/[email protected] /msg586184.html
59
- include=/c/ProgramData/Chocolatey/lib/mingw/tools/install/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/avx512fintrin.h
58
+ if [ "${{ matrix.BUILD_BITS }}" == "64" ]; then
59
+ include=/c/ProgramData/Chocolatey/lib/mingw/tools/install/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/avx512fintrin.h
60
+ else
61
+ include=/c/ProgramData/Chocolatey/lib/mingw/tools/install/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/avx512fintrin.h
62
+ fi
60
63
sed -i -e"s/_mm512_abs_pd (__m512 __A)/_mm512_abs_pd (__m512d __A)/" $include
61
64
name: Fix gcc bug
62
- if: ${{ matrix.BUILD_BITS == '64' }}
63
65
64
66
- name : Build
65
67
run : |
You can’t perform that action at this time.
0 commit comments