diff options
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 91ad5cc95d85..1455413ec7a7 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -43,15 +43,21 @@ ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ | |||
43 | -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ | 43 | -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ |
44 | -e s/sh[234].*/sh/ ) | 44 | -e s/sh[234].*/sh/ ) |
45 | 45 | ||
46 | CC = $(CROSS_COMPILE)gcc | ||
47 | AR = $(CROSS_COMPILE)ar | ||
48 | |||
46 | # Additional ARCH settings for x86 | 49 | # Additional ARCH settings for x86 |
47 | ifeq ($(ARCH),i386) | 50 | ifeq ($(ARCH),i386) |
48 | ARCH := x86 | 51 | ARCH := x86 |
49 | endif | 52 | endif |
50 | ifeq ($(ARCH),x86_64) | 53 | ifeq ($(ARCH),x86_64) |
51 | RAW_ARCH := x86_64 | 54 | ARCH := x86 |
52 | ARCH := x86 | 55 | IS_X86_64 := $(shell echo __x86_64__ | ${CC} -E -xc - | tail -n 1) |
53 | ARCH_CFLAGS := -DARCH_X86_64 | 56 | ifeq (${IS_X86_64}, 1) |
54 | ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S | 57 | RAW_ARCH := x86_64 |
58 | ARCH_CFLAGS := -DARCH_X86_64 | ||
59 | ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S | ||
60 | endif | ||
55 | endif | 61 | endif |
56 | 62 | ||
57 | # | 63 | # |
@@ -127,8 +133,6 @@ lib = lib | |||
127 | 133 | ||
128 | export prefix bindir sharedir sysconfdir | 134 | export prefix bindir sharedir sysconfdir |
129 | 135 | ||
130 | CC = $(CROSS_COMPILE)gcc | ||
131 | AR = $(CROSS_COMPILE)ar | ||
132 | RM = rm -f | 136 | RM = rm -f |
133 | MKDIR = mkdir | 137 | MKDIR = mkdir |
134 | FIND = find | 138 | FIND = find |