Removed -fno-strict-aliasing, -pthread flags

This commit is contained in:
Bob Polis
2021-11-11 10:33:37 +01:00
parent 4883c1c84b
commit 072383a88f
7 changed files with 8 additions and 8 deletions

View File

@ -30,7 +30,7 @@ ScreensaverPlugin* create_instance() {
}
int Huey::fps() const {
return 5;
return 50;
}
void Huey::update() {

View File

@ -24,7 +24,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 := $(CXXFLAGS) -Wshadow -Wall -Wpedantic -Wextra -g -std=c++17 -fPIC
ifeq ($(DEBUG),1)
CXXFLAGS += -D DEBUG -O0
else