Removed -pthread and -fno-strict-aliasing flags

This commit is contained in:
Bob Polis
2021-11-13 19:14:19 +01:00
parent 072383a88f
commit 90a4464773
6 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ HDRS := $(filter-out $(LIBNAME).hpp,$(wildcard *.hpp))
CXX ?= g++
CXXFLAGS := $(CXXFLAGS) -Wshadow -Wall -Wpedantic -Wextra -g -std=c++17 -fPIC
CXXFLAGS += -Wshadow -Wall -Wpedantic -Wextra -g -std=c++17 -fPIC
ifeq ($(DEBUG),1)
CXXFLAGS += -D DEBUG -O0
else