diff options
| author | Aaro Koskinen <aaro.koskinen@nokia.com> | 2015-07-01 07:54:43 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-07-01 16:53:50 -0400 |
| commit | 5ef7bbb09f7b91ef06524c72e1ab1fc48e0d6682 (patch) | |
| tree | b7a3346416c6d1229ff79ade4fe8646c95125dd8 /tools | |
| parent | 642273795fa81da11290ffa90bce6ff242f2a7bb (diff) | |
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 <aaro.koskinen@nokia.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1435751683-18500-2-git-send-email-aaro.koskinen@nokia.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/perf/Makefile.perf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 0e0938afbbb1..7a4b549214e3 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
| @@ -110,7 +110,7 @@ $(OUTPUT)PERF-VERSION-FILE: ../../.git/HEAD | |||
| 110 | $(Q)touch $(OUTPUT)PERF-VERSION-FILE | 110 | $(Q)touch $(OUTPUT)PERF-VERSION-FILE |
| 111 | 111 | ||
| 112 | CC = $(CROSS_COMPILE)gcc | 112 | CC = $(CROSS_COMPILE)gcc |
| 113 | LD = $(CROSS_COMPILE)ld | 113 | LD ?= $(CROSS_COMPILE)ld |
| 114 | AR = $(CROSS_COMPILE)ar | 114 | AR = $(CROSS_COMPILE)ar |
| 115 | PKG_CONFIG = $(CROSS_COMPILE)pkg-config | 115 | PKG_CONFIG = $(CROSS_COMPILE)pkg-config |
| 116 | 116 | ||
