Disable useless C++ ABI warning

This commit is contained in:
Joris van Rantwijk 2024-09-18 20:58:33 +02:00
parent ece8f68d81
commit 4dbc5a60ad
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
CC = $(CROSS_COMPILE)gcc CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++ CXX = $(CROSS_COMPILE)g++
CFLAGS = -Wall -O2 CFLAGS = -Wall -O2
CXXFLAGS = -std=c++17 -Wall -O2 CXXFLAGS = -std=c++17 -Wall -Wno-psabi -O2
.PHONY: all .PHONY: all
all: puzzlecmd all: puzzlecmd