aboutsummaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-08-09 23:42:57 +0200
committerMarvin Borner2020-08-09 23:42:57 +0200
commitf42aa2d995704c748c370d3e7b3684512361bc09 (patch)
tree2abf158ad5cc128d083789f9aea1145f0cfe0e6d /apps/Makefile
parentf163a5d5f6802f63092229f0f9326e5fb44b7908 (diff)
Some build process changes
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile3
1 files changed, 3 insertions, 0 deletions
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)