]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - kernel/Makefile
kernel: Enable -O2 and LTO again
[nameless-os.git] / kernel / Makefile
index 8bb12d83f070c44c38e33bdaf5001336f6844c46..0290ee11eda0df03ad558bc69c4d7fab590ca8bc 100644 (file)
@@ -5,8 +5,8 @@ include kernel/Makefile
 ASFLAGS_BASE = -f elf -g dwarf2
 CFLAGS_BASE = -fgnu89-inline -ffreestanding -nostdlib -Iinclude \
              -Iinclude/arch/x86 -g -DGIT_COMMIT=\"$(GIT_REV)\" \
-             -Og
-LDFLAGS_BASE = -ffreestanding -nostdlib -lgcc -g -T arch/x86/linker.ld
+             -O2 -flto
+LDFLAGS_BASE = -ffreestanding -nostdlib -lgcc -g -O2 -flto -T arch/x86/linker.ld
 
 kernel.elf kernel.dbg: $(KERNEL_OBJ)
        $(REAL_CC) $(LDFLAGS_BASE) $(LDFLAGS) $^ -o $@