aboutsummaryrefslogtreecommitdiff
path: root/.build.mk
diff options
context:
space:
mode:
authorMarvin Borner2021-06-02 22:27:59 +0200
committerMarvin Borner2021-06-02 22:27:59 +0200
commit98e15f73f090c32b5197ecec0845c408d4a54608 (patch)
tree31490731c74b45e2450de56c0c4ea4abd3f3b54d /.build.mk
parent91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (diff)
Huge scheduler rewrite and other things
Diffstat (limited to '.build.mk')
-rw-r--r--.build.mk11
1 files changed, 8 insertions, 3 deletions
diff --git a/.build.mk b/.build.mk
index 32e4086..23cbe30 100644
--- a/.build.mk
+++ b/.build.mk
@@ -3,27 +3,32 @@
# All preprocessor flags - enable using the custom config group below
ALL_PREPROCESSOR_FLAGS = \
DEBUG_ALLOC \
+ DEBUG_SYSCALLS \
DEBUG_SCHEDULER
# All config options
ALL_CONFIGS = \
+ CONFIG_STRIP \
CONFIG_CACHE \
CONFIG_EXTRA_CFLAGS \
CONFIG_USER_PIE
+# Set ccache globally
+CONFIG_CACHE ?= ccache
+
# 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), experimental)
+ CONFIG_USER_PIE ?= true
else ifeq ($(CONFIG), custom)
DEBUG_ALLOC ?= true
+ DEBUG_SYSCALLS ?= true
DEBUG_SCHEDULER ?= true
endif