All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] efi/libstub: Indicate clang the relocation mode for arm64
@ 2017-05-09 19:36 ` Matthias Kaehlcke
  0 siblings, 0 replies; 21+ messages in thread
From: Matthias Kaehlcke @ 2017-05-09 19:36 UTC (permalink / raw)
  To: Matt Fleming, Ard Biesheuvel
  Cc: linux-efi, linux-kernel, Grant Grundler, Greg Hackmann,
	Michael Davidson, Matthias Kaehlcke, Bernhard Rosenkränzer

From: Greg Hackmann <ghackmann@google.com>

Without any extra guidance, clang will generate libstub with either
absolute or relative ELF relocations. Use the right combination of
-fpic and -fno-pic on different files to avoid this.

Signed-off-by: Greg Hackmann <ghackmann@google.com>
Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 drivers/firmware/efi/libstub/Makefile | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/firmware/efi/libstub/Makefile b/drivers/firmware/efi/libstub/Makefile
index f7425960f6a5..ccbaaf4d8650 100644
--- a/drivers/firmware/efi/libstub/Makefile
+++ b/drivers/firmware/efi/libstub/Makefile
@@ -11,6 +11,9 @@ cflags-$(CONFIG_X86)		+= -m$(BITS) -D__KERNEL__ -O2 \
 				   -mno-mmx -mno-sse
 
 cflags-$(CONFIG_ARM64)		:= $(subst -pg,,$(KBUILD_CFLAGS))
+ifeq ($(cc-name),clang)
+cflags-$(CONFIG_ARM64)		+= -fpic
+endif
 cflags-$(CONFIG_ARM)		:= $(subst -pg,,$(KBUILD_CFLAGS)) \
 				   -fno-builtin -fpic -mno-single-pic-base
 
@@ -38,6 +41,9 @@ $(obj)/lib-%.o: $(srctree)/lib/%.c FORCE
 
 lib-$(CONFIG_EFI_ARMSTUB)	+= arm-stub.o fdt.o string.o random.o \
 				   $(patsubst %.c,lib-%.o,$(arm-deps))
+ifeq ($(cc-name),clang)
+CFLAGS_arm64-stub.o            += -fno-pic
+endif
 
 lib-$(CONFIG_ARM)		+= arm32-stub.o
 lib-$(CONFIG_ARM64)		+= arm64-stub.o
-- 
2.13.0.rc2.291.g57267f2277-goog

^ permalink raw reply related	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2017-05-18 17:00 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-09 19:36 [PATCH] efi/libstub: Indicate clang the relocation mode for arm64 Matthias Kaehlcke
2017-05-09 19:36 ` Matthias Kaehlcke
2017-05-09 20:50 ` Greg Hackmann
2017-05-09 20:50   ` Greg Hackmann
2017-05-09 21:49   ` Matthias Kaehlcke
2017-05-10  7:51     ` Ard Biesheuvel
2017-05-10 18:38       ` Matthias Kaehlcke
2017-05-10 19:05         ` Ard Biesheuvel
2017-05-10 19:05           ` Ard Biesheuvel
2017-05-10 19:47           ` Matthias Kaehlcke
2017-05-10 19:47             ` Matthias Kaehlcke
2017-05-11 13:51             ` Ard Biesheuvel
2017-05-11 13:51               ` Ard Biesheuvel
2017-05-17 16:09               ` Matthias Kaehlcke
2017-05-17 16:09                 ` Matthias Kaehlcke
2017-05-17 23:24               ` Greg Hackmann
2017-05-17 23:24                 ` Greg Hackmann
2017-05-18  7:41                 ` Ard Biesheuvel
2017-05-18  7:41                   ` Ard Biesheuvel
2017-05-18 17:00                   ` Matthias Kaehlcke
2017-05-18 17:00                     ` Matthias Kaehlcke

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.