Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754801AbbGCHuZ (ORCPT ); Fri, 3 Jul 2015 03:50:25 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36229 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754793AbbGCHuV (ORCPT ); Fri, 3 Jul 2015 03:50:21 -0400 Date: Fri, 3 Jul 2015 00:49:59 -0700 From: tip-bot for Aaro Koskinen Message-ID: Cc: jolsa@kernel.org, aaro.koskinen@nokia.com, a.p.zijlstra@chello.nl, mingo@kernel.org, paulus@samba.org, hpa@zytor.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, acme@redhat.com Reply-To: jolsa@kernel.org, a.p.zijlstra@chello.nl, mingo@kernel.org, aaro.koskinen@nokia.com, paulus@samba.org, acme@redhat.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, hpa@zytor.com In-Reply-To: <1435751683-18500-2-git-send-email-aaro.koskinen@nokia.com> References: <1435751683-18500-2-git-send-email-aaro.koskinen@nokia.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] perf tools: Allow to specify custom linker command Git-Commit-ID: 5ef7bbb09f7b91ef06524c72e1ab1fc48e0d6682 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1651 Lines: 42 Commit-ID: 5ef7bbb09f7b91ef06524c72e1ab1fc48e0d6682 Gitweb: http://git.kernel.org/tip/5ef7bbb09f7b91ef06524c72e1ab1fc48e0d6682 Author: Aaro Koskinen AuthorDate: Wed, 1 Jul 2015 14:54:43 +0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 1 Jul 2015 17:53:50 -0300 perf tools: Allow to specify custom linker command 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 Acked-by: Jiri Olsa Cc: Paul Mackerras Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1435751683-18500-2-git-send-email-aaro.koskinen@nokia.com Signed-off-by: Arnaldo Carvalho de Melo --- 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 0e0938a..7a4b549 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -110,7 +110,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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/