This commit is contained in:
mrdudz 2022-11-18 17:27:51 +01:00
parent d68598165c
commit d1b7768064
1 changed files with 2 additions and 2 deletions

View File

@ -75,13 +75,13 @@ jobs:
- name: Build and package 64-bit Windows versions of the tools.
run: |
make -C src clean
make -j2 bin USER_CFLAGS="-D __USE_MINGW_ANSI_STDIO 1 -Werror" CROSS_COMPILE=x86_64-w64-mingw32-
make -j2 bin USER_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 -Werror" CROSS_COMPILE=x86_64-w64-mingw32-
make zip
mv cc65.zip cc65-snapshot-win64.zip
- name: Build and package 32-bit Windows versions of the tools.
run: |
make -C src clean
make -j2 bin USER_CFLAGS="-D __USE_MINGW_ANSI_STDIO 1 -Werror" CROSS_COMPILE=i686-w64-mingw32-
make -j2 bin USER_CFLAGS="-D__USE_MINGW_ANSI_STDIO=1 -Werror" CROSS_COMPILE=i686-w64-mingw32-
make zip
mv cc65.zip cc65-snapshot-win32.zip