mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 00:21:17 +00:00
perf tools: Add ia64 support for tools/perf/
Compiler on ia64 rejects the "-m64" option. Add arch specific pieces to perf.h Signed-off-by: Tony Luck <tony.luck@intel.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <4b02d7f43514327a@agluck-desktop.sc.intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
7513865077
commit
11ada26c78
2 changed files with 11 additions and 3 deletions
|
@ -166,10 +166,12 @@ ifdef NO_64BIT
|
||||||
MBITS := -m32
|
MBITS := -m32
|
||||||
else
|
else
|
||||||
#
|
#
|
||||||
# If we're on a 64-bit kernel, use -m64:
|
# If we're on a 64-bit kernel (except ia64), use -m64:
|
||||||
#
|
#
|
||||||
ifneq ($(patsubst %64,%,$(uname_M)),$(uname_M))
|
ifneq ($(uname_M),ia64)
|
||||||
MBITS := -m64
|
ifneq ($(patsubst %64,%,$(uname_M)),$(uname_M))
|
||||||
|
MBITS := -m64
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,12 @@
|
||||||
#define cpu_relax() asm volatile("" ::: "memory")
|
#define cpu_relax() asm volatile("" ::: "memory")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __ia64__
|
||||||
|
#include "../../arch/ia64/include/asm/unistd.h"
|
||||||
|
#define rmb() asm volatile ("mf" ::: "memory")
|
||||||
|
#define cpu_relax() asm volatile ("hint @pause" ::: "memory")
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue