blob: 07fa841ccc7a5ef5aa1f54b2d4570df9aa44bbba [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001From b6ebe05dc389b9457e3707401411fd075230b10e Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Andrea Adami <andrea.adami@gmail.com>
3Date: Tue, 21 Aug 2018 16:31:44 +0200
Brad Bishop26bdd442019-08-16 17:08:17 -04004Subject: [PATCH] purgatory Makefile: adapt to klcc
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005
6Upstream-Status: Inappropriate [klibc specific]
7Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Brad Bishop26bdd442019-08-16 17:08:17 -04008
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08009---
10 purgatory/Makefile | 6 +++---
11 1 file changed, 3 insertions(+), 3 deletions(-)
12
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080013--- a/purgatory/Makefile
14+++ b/purgatory/Makefile
Andrew Geisslerac970dd2021-02-12 15:32:45 -060015@@ -47,7 +47,7 @@ purgatory/sha256.o: $(srcdir)/util_lib/s
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080016 $(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
Andrew Geisslerac970dd2021-02-12 15:32:45 -060024@@ -59,8 +59,8 @@ $(PURGATORY): CPPFLAGS=$($(ARCH)_PURGATO
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080025 -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 \
Andrew Geisslerac970dd2021-02-12 15:32:45 -060030+ -Wl,--no-undefined -no-pie -nostartfiles -nostdlib \
31+ -nodefaultlibs -Wl,--entry=purgatory_start -Wl,-r \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 -Wl,-Map=$(PURGATORY_MAP)
33
34 $(PURGATORY): $(PURGATORY_OBJS)