From ffb2c74435ad0e313b7c33ae1f00f02824bb6fc0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 24 Oct 2020 23:30:42 +0200 Subject: Started new GFX/GUI abstraction --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 764c933..6775826 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,13 @@ # MIT License, Copyright (c) 2020 Marvin Borner +# Kernel optimization +OPTIMIZATION = -Ofast + +# Remove tree optimizations for kernel - TODO: Why? +CFLAGS_EXTRA = -fno-tree-bit-ccp -fno-tree-builtin-call-dce -fno-tree-ccp -fno-tree-ch -fno-tree-coalesce-vars -fno-tree-copy-prop -fno-tree-dce -fno-tree-dominator-opts -fno-tree-dse -fno-tree-fre -fno-tree-pta -fno-tree-sink -fno-tree-slsr -fno-tree-sra -fno-tree-ter + +export + all: compile clean compile: -- cgit v1.2.3