From 4b4bfec8a312132acc84b5166998d0cfa7c01931 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 18 May 2021 18:37:19 +0200 Subject: Improved entire building chain (especially debugging) --- .build.mk | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .build.mk (limited to '.build.mk') diff --git a/.build.mk b/.build.mk new file mode 100644 index 0000000..8d34dbb --- /dev/null +++ b/.build.mk @@ -0,0 +1,28 @@ +# MIT License, Copyright (c) 2021 Marvin Borner + +# All preprocessor flags - enable using the custom config group below +ALL_PREPROCESSOR_FLAGS = \ + DEBUG_ALLOC \ + DEBUG_SCHEDULER + +# Default configs +CONFIG_CACHE ?= +CONFIG_EXTRA_CFLAGS ?= +CONFIG_USE_PIE ?= + +# Specific config groups +ifeq ($(CONFIG), debug) + CONFIG_OPTIMIZATION ?= -Ofast + CONFIG_EXTRA_CFLAGS ?= -Wno-error -ggdb3 -s -fsanitize=undefined -fstack-protector-all + CONFIG_CACHE ?= ccache +else ifeq ($(CONFIG), dev) + CONFIG_OPTIMIZATION ?= -finline -finline-functions -Ofast + CONFIG_CACHE ?= ccache +else ifeq ($(CONFIG), release) + CONFIG_OPTIMIZATION ?= -finline -finline-functions -Ofast + CONFIG_STRIP ?= true + CONFIG_CACHE ?= ccache +else ifeq ($(CONFIG), custom) + DEBUG_ALLOC ?= true + DEBUG_SCHEDULER ?= true +endif -- cgit v1.2.3