diff options
author | Marvin Borner | 2020-11-12 21:47:53 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-12 21:47:53 +0100 |
commit | 8d08b8e80440b310e623c0ae397065bf28d94d1e (patch) | |
tree | 327262179e1b721ea01a8b71121bd0023600f721 /Makefile | |
parent | bef485ad8159d79b9ea7a31aa41450fc995f5724 (diff) |
Traced some issues; disabled malloc alignment
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # MIT License, Copyright (c) 2020 Marvin Borner # Kernel optimization -OPTIMIZATION = -O0 +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 |