mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 16:33:00 +00:00
spül es noch einmal, Sam
This commit is contained in:
parent
d1b7768064
commit
5638e0916a
@ -75,13 +75,13 @@ jobs:
|
|||||||
- name: Build and package 64-bit Windows versions of the tools.
|
- name: Build and package 64-bit Windows versions of the tools.
|
||||||
run: |
|
run: |
|
||||||
make -C src clean
|
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=-Werror CROSS_COMPILE=x86_64-w64-mingw32-
|
||||||
make zip
|
make zip
|
||||||
mv cc65.zip cc65-snapshot-win64.zip
|
mv cc65.zip cc65-snapshot-win64.zip
|
||||||
- name: Build and package 32-bit Windows versions of the tools.
|
- name: Build and package 32-bit Windows versions of the tools.
|
||||||
run: |
|
run: |
|
||||||
make -C src clean
|
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=-Werror CROSS_COMPILE=i686-w64-mingw32-
|
||||||
make zip
|
make zip
|
||||||
mv cc65.zip cc65-snapshot-win32.zip
|
mv cc65.zip cc65-snapshot-win32.zip
|
||||||
|
|
||||||
|
@ -65,7 +65,12 @@
|
|||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "codegen.h"
|
#include "codegen.h"
|
||||||
|
|
||||||
|
/* this is a terrible hack that tries to combat the ever reoccuring issue with
|
||||||
|
mingw and PRIXPTR */
|
||||||
|
#defined(__MINGW64__)
|
||||||
|
#undef PRIXPTR
|
||||||
|
#define PRIXPTR "%p"
|
||||||
|
#endif
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Helpers */
|
/* Helpers */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user