diff options
Diffstat (limited to 'libc/Makefile')
-rw-r--r-- | libc/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/Makefile b/libc/Makefile index 3458256..cbc2fc9 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -16,10 +16,7 @@ LD = ../cross/opt/bin/i686-elf-ld AR = ../cross/opt/bin/i686-elf-ar AS = nasm -# Flags to make the binary smaller TODO: Remove after indirect pointer support! -CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os - -CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ +CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -fno-asynchronous-unwind-tables -mno-red-zone -mgeneral-regs-only -mpreferred-stack-boundary=2 -std=c99 -m32 -pedantic-errors -Iinc/ -Os ASFLAGS = -f elf32 |