diff options
author | Marvin Borner | 2020-10-26 16:36:40 +0100 |
---|---|---|
committer | Marvin Borner | 2020-10-26 16:36:40 +0100 |
commit | 197ea3ca20879b29fca41a07cf43e5b04b9c5083 (patch) | |
tree | c0e0223e289bde3af7cca995f98d681779bfda26 /Makefile | |
parent | 4ae48304b2290b6c835eb3d937bd5e905ce0e5d4 (diff) |
Optimizations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,8 +3,10 @@ # 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 +# 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 -fno-tree-loop-vectorize -fno-inline-functions -fno-inline-functions-called-once +# Remove ipa optimizations for kernel - TODO: Why?!?! +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 export |