diff options
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 5 |
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 |