From c7d7ac71a421c43c0c701b18c58b87fc868e02d8 Mon Sep 17 00:00:00 2001 From: Conn O'Griofa Date: Tue, 5 Sep 2017 15:40:44 +0100 Subject: [PATCH] libretro: fix unexpected reloc type 0x03 error on Raspberry Pi 3 Issue is caused by commit 66dda842eae01f47f5389b931ec9567fb0bbb6a1 in cpu/cyclone submodule. --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index 306c8af..14f2dc5 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -366,7 +366,7 @@ else ifeq ($(platform), qnx) # ARM else ifneq (,$(findstring armv,$(platform))) TARGET := $(TARGET_NAME)_libretro.so - SHARED := -shared -Wl,--no-undefined + SHARED := -shared -Wl,--no-undefined,-Bsymbolic fpic := -fPIC ifneq (,$(findstring cortexa5,$(platform))) CFLAGS += -marm -mcpu=cortex-a5 -- 2.39.2