On Wed, Jul 01, 2015 at 02:54:43PM +0300, Aaro Koskinen wrote: > Allow to specify custom linker command. This fixes MIPS64 builds for > 64-bit userspace as it will allow to pass a linker using the correct > linker flags for 64-bit ABI (by default GNU binutils ld will assume N32). > > Signed-off-by: Aaro Koskinen <[email protected]>
Acked-by: Jiri Olsa <[email protected]> thanks, jirka > --- > tools/perf/Makefile.perf | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf > index 14e823f..a3fbe65 100644 > --- a/tools/perf/Makefile.perf > +++ b/tools/perf/Makefile.perf > @@ -108,7 +108,7 @@ $(OUTPUT)PERF-VERSION-FILE: ../../.git/HEAD > $(Q)touch $(OUTPUT)PERF-VERSION-FILE > > CC = $(CROSS_COMPILE)gcc > -LD = $(CROSS_COMPILE)ld > +LD ?= $(CROSS_COMPILE)ld > AR = $(CROSS_COMPILE)ar > PKG_CONFIG = $(CROSS_COMPILE)pkg-config > > -- > 2.4.3 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

