diff options
author | Marvin Borner | 2021-05-18 18:37:19 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-18 18:37:50 +0200 |
commit | 4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch) | |
tree | eeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /apps | |
parent | eb13f2a8f536fecf918699bc19b3087a78a417d6 (diff) |
Improved entire building chain (especially debugging)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Makefile | 5 | ||||
-rw-r--r-- | apps/chess/Makefile | 3 | ||||
-rw-r--r-- | apps/idle/Makefile | 3 | ||||
-rw-r--r-- | apps/init/Makefile | 3 | ||||
-rw-r--r-- | apps/test/Makefile | 3 | ||||
-rw-r--r-- | apps/wm/Makefile | 3 |
6 files changed, 18 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile index 98bec47..2884040 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,11 +1,12 @@ # MIT License, Copyright (c) 2020 Marvin Borner -CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS)/ -I$(LIBS)/libc/inc/ -pie -fPIE -fPIC -DUSER +CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS)/ -I$(LIBS)/libc/inc/ -DUSER LDFLAGS = --section-start=.text=0x42000000 -L$(BUILD) DIRS = $(wildcard */.) -ifneq ($(DEBUG), 1) +ifeq ($(CONFIG_USER_PIE), true) LDFLAGS += -pie -no-dynamic-linker + CFLAGS += -pie -fPIE -fPIC endif export diff --git a/apps/chess/Makefile b/apps/chess/Makefile index b538807..e84f65f 100644 --- a/apps/chess/Makefile +++ b/apps/chess/Makefile @@ -5,6 +5,9 @@ OBJS = chess.o all: $(OBJS) @mkdir -p $(BUILD)/apps/chess/ @$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $^ -lgui -ltxt -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/chess/exec +endif clean: @$(RM) -f $(OBJS) diff --git a/apps/idle/Makefile b/apps/idle/Makefile index 28145b4..f4f9730 100644 --- a/apps/idle/Makefile +++ b/apps/idle/Makefile @@ -5,6 +5,9 @@ OBJS = idle.o all: $(OBJS) @mkdir -p $(BUILD)/apps/idle/ @$(LD) -o $(BUILD)/apps/idle/exec $(LDFLAGS) $^ -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/idle/exec +endif clean: @$(RM) -f $(OBJS) diff --git a/apps/init/Makefile b/apps/init/Makefile index 3547797..68038d0 100644 --- a/apps/init/Makefile +++ b/apps/init/Makefile @@ -5,6 +5,9 @@ OBJS = init.o all: $(OBJS) @mkdir -p $(BUILD)/apps/init/ @$(LD) -o $(BUILD)/apps/init/exec $(LDFLAGS) $^ -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/init/exec +endif clean: @$(RM) -f $(OBJS) diff --git a/apps/test/Makefile b/apps/test/Makefile index 78a913d..e80b54b 100644 --- a/apps/test/Makefile +++ b/apps/test/Makefile @@ -5,6 +5,9 @@ OBJS = test.o fuzz.o all: $(OBJS) @mkdir -p $(BUILD)/apps/test/ @$(LD) -o $(BUILD)/apps/test/exec $(LDFLAGS) $^ -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/test/exec +endif clean: @$(RM) -f $(OBJS) diff --git a/apps/wm/Makefile b/apps/wm/Makefile index abceef7..8fb0096 100644 --- a/apps/wm/Makefile +++ b/apps/wm/Makefile @@ -5,6 +5,9 @@ OBJS = wm.o all: $(OBJS) @mkdir -p $(BUILD)/apps/wm/ @$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $^ -lgui -ltxt -lc +ifeq ($(CONFIG_STRIP), true) + @$(ST) --strip-all $(BUILD)/apps/wm/exec +endif clean: @$(RM) -f $(OBJS) |