mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
hopefully thats it
This commit is contained in:
parent
4c047bf11e
commit
b166dc4261
46
.github/workflows/snapshot-on-push-master.yml
vendored
46
.github/workflows/snapshot-on-push-master.yml
vendored
@ -49,29 +49,29 @@ jobs:
|
||||
- name: Do some simple style checks
|
||||
shell: bash
|
||||
run: make -j2 checkstyle
|
||||
# - name: Build the tools.
|
||||
# shell: bash
|
||||
# run: |
|
||||
# make -j2 bin USER_CFLAGS=-Werror
|
||||
# make -j2 util
|
||||
# - name: Build the platform libraries.
|
||||
# shell: bash
|
||||
# run: make -j2 lib QUIET=1
|
||||
# - name: Run the regression tests.
|
||||
# shell: bash
|
||||
# run: make test QUIET=1
|
||||
# - name: Test that the samples can be built.
|
||||
# shell: bash
|
||||
# run: make -j2 samples
|
||||
# - name: Remove the output from the samples tests.
|
||||
# shell: bash
|
||||
# run: make -C samples clean
|
||||
# - name: Remove programs in util directory
|
||||
# shell: bash
|
||||
# run: make -C util clean
|
||||
# - name: Build the document files.
|
||||
# shell: bash
|
||||
# run: make -j2 doc
|
||||
- name: Build the tools.
|
||||
shell: bash
|
||||
run: |
|
||||
make -j2 bin USER_CFLAGS=-Werror
|
||||
make -j2 util
|
||||
- name: Build the platform libraries.
|
||||
shell: bash
|
||||
run: make -j2 lib QUIET=1
|
||||
- name: Run the regression tests.
|
||||
shell: bash
|
||||
run: make test QUIET=1
|
||||
- name: Test that the samples can be built.
|
||||
shell: bash
|
||||
run: make -j2 samples
|
||||
- name: Remove the output from the samples tests.
|
||||
shell: bash
|
||||
run: make -C samples clean
|
||||
- name: Remove programs in util directory
|
||||
shell: bash
|
||||
run: make -C util clean
|
||||
- name: Build the document files.
|
||||
shell: bash
|
||||
run: make -j2 doc
|
||||
- name: Build and package 64-bit Windows versions of the tools.
|
||||
run: |
|
||||
make -C src clean
|
||||
|
@ -65,8 +65,12 @@
|
||||
#include "util.h"
|
||||
#include "codegen.h"
|
||||
|
||||
/* this is a terrible hack that tries to combat the ever reoccuring issue with
|
||||
mingw and PRIXPTR */
|
||||
/* This is a terrible hack that tries to combat the ever reoccuring issue with
|
||||
Mingw and PRIXPTR - the macro should have been defined like this for us in
|
||||
the first place.
|
||||
NOTE: "I64u" works in the github actions now, so if your local mingw64 fails,
|
||||
you probably have to update.
|
||||
*/
|
||||
#if defined(__MINGW64__)
|
||||
#undef PRIXPTR
|
||||
#define PRIXPTR "I64u"
|
||||
|
Loading…
Reference in New Issue
Block a user