From f9ce88e7a313b53d9f384b1af520c2f89386bc70 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Wed, 14 Feb 2024 18:28:11 +0100 Subject: [PATCH] Makefile: use no intermediate file To speedup, a bit, the compilation, use -pipe option for gcc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 997769c..862e37d 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CPPFLAGS = -MMD AS=nasm ASFLAGS += -f elf32 LDFLAGS += -m elf_i386 -CFLAGS += -m32 -Wall -Wextra -Werror -ffreestanding -fno-exceptions -fno-pie -fno-stack-protector -fno-tree-vectorize -D__KERNEL__ +CFLAGS += -m32 -pipe -Wall -Wextra -Werror -ffreestanding -fno-exceptions -fno-pie -fno-stack-protector -fno-tree-vectorize -D__KERNEL__ #keep .i and .s #CFLAGS += -save-temps #CFLAGS += -fanalyzer -Wno-analyzer-malloc-leak -Wno-analyzer-out-of-bounds