1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

shoot in the dark, try to fix ming build issue

This commit is contained in:
mrdudz 2022-11-18 17:13:37 +01:00
parent 0408d71cc5
commit fdcc683997

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=-Werror CROSS_COMPILE=x86_64-w64-mingw32-
make -j2 bin USER_CFLAGS="-D __STDC_FORMAT_MACROS -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=-Werror CROSS_COMPILE=i686-w64-mingw32-
make -j2 bin USER_CFLAGS="-D __STDC_FORMAT_MACROS -Werror" CROSS_COMPILE=i686-w64-mingw32-
make zip
mv cc65.zip cc65-snapshot-win32.zip