commit 84d735c2b36ffea65a2e1f28a2f62abe7ae66af6 parent d19984b1ef934baaaeba30a1180cd249117186ea Author: Yersa Nordman <finwo@pm.me> Date: Fri, 22 May 2020 13:55:55 +0200 Clang using -Ofast instead of -Os now Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ libmatter.a: $(OBJ) $(AR) -cvq libmatter.a $(OBJ) %.o: %.c - $(LLE) -Os -S $(CFLAGS) -nostdinc -fno-builtin -Iinclude -Iarch/$(TARGET)/include -c $< -o $(@:.o=.ll) + $(LLE) -Ofast -S $(CFLAGS) -nostdinc -fno-builtin -Iinclude -Iarch/$(TARGET)/include -c $< -o $(@:.o=.ll) $(LLC) -filetype=obj -O3 $(@:.o=.ll) .PHONY: clean