perf tools: Update Makefile for Android
For cross-compiling on Android, some specific changes are needed in the Makefile. Update the Makefile to support cross-compiling for Android. The original ideea for this was send by Bernhard Rosenkraenzer in https://lkml.org/lkml/2012/8/23/316, but this is a rewrite. Changes: () support bionic in addition to glibc () remove rt and pthread libraries that do not exist in Android () use $(CFLAGS) when detecting initial compiler flags. This is needed when setting CFLAGS as an argument of make (e.g. for setting --sysroot). () include perf's local directory when building for Android to be able to find relative paths if using --sysroot (e.g.: ../../include/linux/perf_event.h) Signed-off-by: Irina Tirdea <irina.tirdea@intel.com> Cc: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org> Cc: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1349678613-7045-3-git-send-email-irina.tirdea@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
78da39faf7
commit
d816ec2d1b
@@ -155,15 +155,15 @@ SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
|
|||||||
|
|
||||||
-include config/feature-tests.mak
|
-include config/feature-tests.mak
|
||||||
|
|
||||||
ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -fstack-protector-all),y)
|
ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -fstack-protector-all),y)
|
||||||
CFLAGS := $(CFLAGS) -fstack-protector-all
|
CFLAGS := $(CFLAGS) -fstack-protector-all
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wstack-protector),y)
|
ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wstack-protector),y)
|
||||||
CFLAGS := $(CFLAGS) -Wstack-protector
|
CFLAGS := $(CFLAGS) -Wstack-protector
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wvolatile-register-var),y)
|
ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wvolatile-register-var),y)
|
||||||
CFLAGS := $(CFLAGS) -Wvolatile-register-var
|
CFLAGS := $(CFLAGS) -Wvolatile-register-var
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -172,6 +172,13 @@ endif
|
|||||||
BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include -I$(OUTPUT)util -I$(TRACE_EVENT_DIR) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
|
BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include -I$(OUTPUT)util -I$(TRACE_EVENT_DIR) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
|
||||||
BASIC_LDFLAGS =
|
BASIC_LDFLAGS =
|
||||||
|
|
||||||
|
ifeq ($(call try-cc,$(SOURCE_BIONIC),$(CFLAGS)),y)
|
||||||
|
BIONIC := 1
|
||||||
|
EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
|
||||||
|
EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
|
||||||
|
BASIC_CFLAGS += -I.
|
||||||
|
endif
|
||||||
|
|
||||||
# Guard against environment variables
|
# Guard against environment variables
|
||||||
BUILTIN_OBJS =
|
BUILTIN_OBJS =
|
||||||
LIB_H =
|
LIB_H =
|
||||||
@@ -469,12 +476,18 @@ else
|
|||||||
FLAGS_LIBELF=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS)
|
FLAGS_LIBELF=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS)
|
||||||
ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF)),y)
|
ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF)),y)
|
||||||
FLAGS_GLIBC=$(ALL_CFLAGS) $(ALL_LDFLAGS)
|
FLAGS_GLIBC=$(ALL_CFLAGS) $(ALL_LDFLAGS)
|
||||||
ifneq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC)),y)
|
ifeq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC)),y)
|
||||||
msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
|
LIBC_SUPPORT := 1
|
||||||
else
|
endif
|
||||||
|
ifeq ($(BIONIC),1)
|
||||||
|
LIBC_SUPPORT := 1
|
||||||
|
endif
|
||||||
|
ifeq ($(LIBC_SUPPORT),1)
|
||||||
NO_LIBELF := 1
|
NO_LIBELF := 1
|
||||||
NO_DWARF := 1
|
NO_DWARF := 1
|
||||||
NO_DEMANGLE := 1
|
NO_DEMANGLE := 1
|
||||||
|
else
|
||||||
|
msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
FLAGS_DWARF=$(ALL_CFLAGS) -ldw -lelf $(ALL_LDFLAGS) $(EXTLIBS)
|
FLAGS_DWARF=$(ALL_CFLAGS) -ldw -lelf $(ALL_LDFLAGS) $(EXTLIBS)
|
||||||
|
@@ -43,6 +43,15 @@ int main(void)
|
|||||||
}
|
}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define SOURCE_BIONIC
|
||||||
|
#include <android/api-level.h>
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
return __ANDROID_API__;
|
||||||
|
}
|
||||||
|
endef
|
||||||
|
|
||||||
define SOURCE_ELF_MMAP
|
define SOURCE_ELF_MMAP
|
||||||
#include <libelf.h>
|
#include <libelf.h>
|
||||||
int main(void)
|
int main(void)
|
||||||
|
Reference in New Issue
Block a user