Removed -pthread and -fno-strict-aliasing flags

This commit is contained in:
Bob Polis
2021-11-13 19:14:02 +01:00
parent 8eba81ca4b
commit e7979589ee
3 changed files with 28 additions and 16 deletions

View File

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