1From b6ebe05dc389b9457e3707401411fd075230b10e Mon Sep 17 00:00:00 2001
2From: Andrea Adami <andrea.adami@gmail.com>
3Date: Tue, 21 Aug 2018 16:31:44 +0200
4Subject: [PATCH] purgatory Makefile: adapt to klcc
5
6Upstream-Status: Inappropriate [klibc specific]
7Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
8
9---
10 purgatory/Makefile | 6 +++---
11 1 file changed, 3 insertions(+), 3 deletions(-)
12
13--- a/purgatory/Makefile
14+++ b/purgatory/Makefile
15@@ -47,7 +47,7 @@ purgatory/sha256.o: $(srcdir)/util_lib/s
16 $(PURGATORY): CC=$(TARGET_CC)
17 $(PURGATORY): CFLAGS+=$(PURGATORY_EXTRA_CFLAGS) \
18 		      $($(ARCH)_PURGATORY_EXTRA_CFLAGS) \
19-		      -Os -fno-builtin -ffreestanding \
20+		      -Os -fno-builtin -ffreestanding -nostdinc \
21 		      -fno-zero-initialized-in-bss \
22 		      -fno-PIC -fno-PIE -fno-stack-protector
23
24@@ -59,8 +59,8 @@ $(PURGATORY): CPPFLAGS=$($(ARCH)_PURGATO
25 			-Iinclude \
26 			-I$(shell $(CC) -print-file-name=include)
27 $(PURGATORY): LDFLAGS=$($(ARCH)_PURGATORY_EXTRA_CFLAGS)\
28-			-Wl,--no-undefined -nostartfiles -nostdlib \
29-			-nodefaultlibs -e purgatory_start -r \
30+			-Wl,--no-undefined -no-pie -nostartfiles -nostdlib \
31+			-nodefaultlibs -Wl,--entry=purgatory_start -Wl,-r \
32 			-Wl,-Map=$(PURGATORY_MAP)
33
34 $(PURGATORY): $(PURGATORY_OBJS)
35