From c9b89ff2f0395a9fbb8538444c17e9bc80596e43 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sat, 13 Nov 2021 19:14:15 +0100 Subject: [PATCH] Removed -pthread and -fno-strict-aliasing flags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f373f2..342bd14 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ MANDIR ?= ${DATADIR}/man RM := /bin/rm -f INSTALL := /usr/bin/install -c -CXXFLAGS := ${CXXFLAGS} -Wshadow -Wall -Wpedantic -Wextra -g -fno-strict-aliasing -std=c++14 -pthread +CXXFLAGS := ${CXXFLAGS} -Wshadow -Wall -Wpedantic -Wextra -g -std=c++14 ifeq ($(DEBUG),1) CXXFLAGS += -D DEBUG -O0 else