diff options
author | Marvin Borner | 2020-07-28 22:06:43 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-28 22:06:43 +0200 |
commit | 2218b243897843536c1191f268a91dcb0375d8ac (patch) | |
tree | e50c940f4bee2f50df292a6e471c22a8084e2cf2 /Makefile | |
parent | 44fa7a529656c1ec8a445cac4ee7b40351a7c753 (diff) |
Yay, timer works.
This confirms my assumption that the errors are the bootloaders fault by
not supporting indirect pointers.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -8,6 +8,7 @@ COBJS = src/main.o \ src/drivers/interrupts_asm.o \ src/drivers/keyboard.o \ src/drivers/ide.o \ + src/drivers/timer.o \ src/features/fs.o \ src/features/psf.o \ src/features/gui.o \ @@ -20,6 +21,7 @@ CC = cross/opt/bin/i686-elf-gcc LD = cross/opt/bin/i686-elf-ld AS = nasm +# Flags to make the binary smaller TODO: Remove after indirect pointer support! CSFLAGS = -fno-stack-protector -fomit-frame-pointer -ffunction-sections -fdata-sections -Wl,--gc-sections -mpreferred-stack-boundary=2 -falign-functions=1 -falign-jumps=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-math-errno -fno-unroll-loops -fmerge-all-constants -fno-ident -ffast-math # TODO: Use lib as external library |