aboutsummaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-05-18 18:37:19 +0200
committerMarvin Borner2021-05-18 18:37:50 +0200
commit4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch)
treeeeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /apps/Makefile
parenteb13f2a8f536fecf918699bc19b3087a78a417d6 (diff)
Improved entire building chain (especially debugging)
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile5
1 files changed, 3 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