aboutsummaryrefslogtreecommitdiff
path: root/kernel/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-09-14 20:45:13 +0200
committerMarvin Borner2020-09-14 20:45:13 +0200
commit1f5c89d908268a0c11a6c49566c2efad4a069860 (patch)
tree4384cb7c258bc52db74894c5683349272ece3dc5 /kernel/Makefile
parent096f9be4ac328ae39bd794c36a9a04ff68c2b844 (diff)
Tracked down 12KiB bug
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index f91839a..98c17a2 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -7,6 +7,7 @@ COBJS = main.o \
drivers/fpu.o \
drivers/keyboard.o \
drivers/mouse.o \
+ drivers/pci.o \
drivers/ide.o \
drivers/timer.o \
features/fs.o \
@@ -20,7 +21,7 @@ LD = ../cross/opt/bin/i686-elf-ld
OC = ../cross/opt/bin/i686-elf-objcopy
AS = nasm
-CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-asynchronous-unwind-tables -mno-red-zone -mgeneral-regs-only -mpreferred-stack-boundary=2 -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -Os
+CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-asynchronous-unwind-tables -mno-red-zone -mgeneral-regs-only -mpreferred-stack-boundary=2 -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -Ofast
ASFLAGS = -f elf32