Skip to content

Commit

Permalink
Ignore incompatible-type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
neuschaefer committed Nov 4, 2024
1 parent 046d359 commit 234890e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arcgrackle/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PREFIX = $(DEVKITPPC)/bin/powerpc-eabi-
CFLAGS = -mcpu=750 -m32 -mlittle -mhard-float -mno-eabi -mno-sdata
CFLAGS += -ffreestanding -ffunction-sections -fdata-sections
CFLAGS += -I../baselibc/include
CFLAGS += -Wall -Wextra -O2 -g
CFLAGS += -Wall -Wextra -O2 -g -Wno-incompatible-pointer-types
ASFLAGS =
LDFLAGS = -mcpu=750 -m32 -mlittle -n -nostartfiles -nodefaultlibs -Wl,-gc-sections

Expand Down
2 changes: 1 addition & 1 deletion arcunin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif
CFLAGS = -mcpu=750 -m32 -mlittle -mhard-float -mno-eabi -mno-sdata
CFLAGS += -ffreestanding -ffunction-sections -fdata-sections
CFLAGS += -I../baselibc/include
CFLAGS += -Wall -Wextra -O2 -g
CFLAGS += -Wall -Wextra -O2 -g -Wno-incompatible-pointer-types
ASFLAGS =
LDFLAGS = -mcpu=750 -m32 -mlittle -n -nostartfiles -nodefaultlibs -Wl,-gc-sections

Expand Down

0 comments on commit 234890e

Please sign in to comment.