1
0
mirror of synced 2026-04-10 14:39:01 +00:00

Disabled "error on all warnings" as it's a constant maintenance headache.

This commit is contained in:
Andras Tantos
2025-02-13 22:27:10 +00:00
parent 447e1ccf66
commit 87192f2a6c

View File

@@ -2,7 +2,7 @@
### Set up compiler and linker flags unless they're already defined
ifndef CXXFLAGS
#CXXFLAGS = -std=c++11 -c -ffunction-sections -fdata-sections -g -Wall -Wno-unused-local-typedefs -Wno-reorder -Wno-deprecated-declarations -fno-strict-aliasing -Werror
CXXFLAGS = $(CXX_BASE_FLAGS) -std=c++14 -c -ffunction-sections -fdata-sections -g -Wall -Wno-unused-local-typedefs -Wno-reorder -fno-strict-aliasing -Wno-unused-variable -Wno-unused-result -Wno-psabi -Werror
CXXFLAGS = $(CXX_BASE_FLAGS) -std=c++14 -c -ffunction-sections -fdata-sections -g -Wall -Wno-unused-local-typedefs -Wno-reorder -fno-strict-aliasing -Wno-unused-variable -Wno-unused-result -Wno-psabi
endif
ifndef DEP_CXXFLAGS
DEP_CXXFLAGS = -std=c++14