diff options
author | Marvin Borner | 2020-08-01 17:30:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-01 17:30:42 +0200 |
commit | 928bf3f29d7a8b2163a3c1d5c15554d5b42c606b (patch) | |
tree | 16924d82ad79f609ee5966b165050bbcace90b9e /apps/Makefile | |
parent | 9a146c325ac0538be807e904d7c35d0a73f9fc5e (diff) |
Some entry position optimizations
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/Makefile b/apps/Makefile index 16f108a..574f135 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -5,10 +5,7 @@ CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy -# TODO: Fix crash without optimizations -CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os - -CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -I../src/lib/inc/ -fPIE -Os +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -ffunction-sections -fno-builtin -std=c99 -m32 -pedantic-errors -I../src/lib/inc/ -fPIE all: $(COBJS) |