aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
commit970bbb473c81975d3c7366260c8228fd4fcc8c4d (patch)
tree518c5e7290ffe66e84ba1c8e7df0c42f849d0857 /Makefile
parentdcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff)
linting; reduce msp430 binary size
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5e75d76..624863d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CXXFLAGS += -std=c++17 -g3 -ggdb -O0 \
- -Wall -Wextra -pedantic -Werror \
- -fno-exceptions -fno-rtti #-fstack-usage
+ -pedantic -Wall -Wextra -Werror -Weffc++ \
+ -fno-exceptions -fno-threadsafe-statics -fno-rtti #-fstack-usage
CXXFILES := $(wildcard libalee/*.cpp)
OBJFILES := $(subst .cpp,.o,$(CXXFILES))