From 87192f2a6c4c1f19c4d9de715ff00e91ab6b90cc Mon Sep 17 00:00:00 2001 From: Andras Tantos Date: Thu, 13 Feb 2025 22:27:10 +0000 Subject: [PATCH] Disabled "error on all warnings" as it's a constant maintenance headache. --- simulator/engine.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/engine.mak b/simulator/engine.mak index 49a5610..b3d8377 100644 --- a/simulator/engine.mak +++ b/simulator/engine.mak @@ -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