From f42aa2d995704c748c370d3e7b3684512361bc09 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 23:42:57 +0200 Subject: Some build process changes --- apps/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps/Makefile') diff --git a/apps/Makefile b/apps/Makefile index d6c3789..29136d0 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -5,6 +5,9 @@ CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy +# 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 -ffreestanding -ffunction-sections -fno-builtin -std=c99 -m32 -pedantic-errors -I../lib/inc/ -fPIE -Duserspace all: $(COBJS) -- cgit v1.2.3