From 6e90b980b91102911b0296b4013d719d551fc062 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sat, 4 Dec 2021 09:30:01 -0700 Subject: [PATCH] added -Wno-psabi --- reflector/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflector/Makefile b/reflector/Makefile index c3d6927..7fa5fbe 100644 --- a/reflector/Makefile +++ b/reflector/Makefile @@ -29,9 +29,9 @@ DATADIR = /var/lib/xlxd CC = g++ ifeq ($(debug), true) -CFLAGS = -ggdb3 -W -Werror -c -std=c++11 -MMD -MD -c +CFLAGS = -ggdb3 -W -Werror -Wno-psabi -c -std=c++11 -MMD -MD -c else -CFLAGS = -c -W -Werror -std=c++11 -MMD -MD -c +CFLAGS = -c -W -Werror -Wno-psabi -std=c++11 -MMD -MD -c endif LDFLAGS=-pthread