diff options
author | Marvin Borner | 2020-10-24 23:30:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 23:30:42 +0200 |
commit | ffb2c74435ad0e313b7c33ae1f00f02824bb6fc0 (patch) | |
tree | 9200b51e77ea66fb439e15a9bd41287a00cfa654 /Makefile | |
parent | 37b2fde1efd1527ca1462ab10f56ae049ca3525b (diff) |
Started new GFX/GUI abstraction
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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: |