From 5443567733f00e8217731c1241f565025e6f4c9e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 17 Nov 2020 22:38:16 +0100 Subject: I think this fixes quite many bugs! For real though! First tests show no weird bugs anymore. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7291eb1..92892b2 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ # MIT License, Copyright (c) 2020 Marvin Borner # Kernel optimization -OPTIMIZATION = -Os +OPTIMIZATION = -Ofast # Remove tree optimizations for kernel #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 -fno-tree-loop-vectorize -fno-inline-functions -fno-inline-functions-called-once # Remove ipa optimizations for kernel #CFLAGS_EXTRA += -fno-inline-functions -fno-inline-functions-called-once -fno-reorder-functions -fno-reorder-blocks -fno-reorder-blocks-and-partition -fno-ipa-profile -fno-ipa-pure-const -fno-ipa-reference -fno-ipa-reference-addressable -fno-merge-constants -fno-ipa-bit-cp -fno-ipa-cp -fno-ipa-icf -fno-ipa-ra -fno-ipa-sra -fno-ipa-vrp -fno-ipa-cp-clone -CFLAGS_EXTRA = -fno-inline -fno-inline-functions -fno-asynchronous-unwind-tables +CFLAGS_EXTRA = -finline -finline-functions all: compile -- cgit v1.2.3