From 1ef3ce91c70cb6a536438132d3202ccb3eddadbc Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 19 Jul 2017 17:56:56 +0200 Subject: sparc: needs -fPIC Pinted out by Thomas Petazzoni. Signed-off-by: Denys Vlasenko --- arch/sparc/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 arch/sparc/Makefile (limited to 'arch/sparc') diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile new file mode 100644 index 000000000..0b1c56cb5 --- /dev/null +++ b/arch/sparc/Makefile @@ -0,0 +1,11 @@ +# When building a library, even intra-library references, +# such as from find_applet_by_name() to applet_names[], +# don't work with -fpic on sparc, needs -fPIC. +# Don't know why it fails in this case but works when +# a binary is being built. +# +# (if is superfluous, ARCH_FPIC is only used by library build, but it +# demonstrates the point: non-pic binary does not need it) +ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y) +ARCH_FPIC = -fPIC +endif -- cgit v1.2.3