From d5a4efb50adef352b7dde6079d5df07042f2d248 Mon Sep 17 00:00:00 2001 From: Josh Boyer Date: Thu, 5 Sep 2013 10:43:44 -0400 Subject: Fix perf build on ARM (from Kyle McMartin) --- perf-arm-fix.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 perf-arm-fix.patch (limited to 'perf-arm-fix.patch') diff --git a/perf-arm-fix.patch b/perf-arm-fix.patch new file mode 100644 index 00000000..795c20ef --- /dev/null +++ b/perf-arm-fix.patch @@ -0,0 +1,24 @@ +From: Kyle McMartin + +MAP_32BIT is defined only on x86... this means perf fails to build on +all other platforms. + +Signed-off-by: Kyle McMartin + +--- a/tools/perf/builtin-trace.c ++++ b/tools/perf/builtin-trace.c +@@ -100,7 +100,9 @@ static size_t syscall_arg__scnprintf_mmap_flags(char *bf, size_t size, + + P_MMAP_FLAG(SHARED); + P_MMAP_FLAG(PRIVATE); ++#ifdef MAP_32BIT + P_MMAP_FLAG(32BIT); ++#endif + P_MMAP_FLAG(ANONYMOUS); + P_MMAP_FLAG(DENYWRITE); + P_MMAP_FLAG(EXECUTABLE); +-- +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/ \ No newline at end of file -- cgit