Makefile: use no intermediate file

To speedup, a bit, the compilation, use -pipe option for gcc
This commit is contained in:
Mathieu Maret 2024-02-14 18:28:11 +01:00 committed by Mathieu Maret
parent 1c2cd75c72
commit f9ce88e7a3
1 changed files with 1 additions and 1 deletions

View File

@ -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