From 98e15f73f090c32b5197ecec0845c408d4a54608 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 2 Jun 2021 22:27:59 +0200 Subject: Huge scheduler rewrite and other things --- .build.mk | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to '.build.mk') 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 -- cgit v1.2.3