blob: 041b493ad3ab5133f8503e549f6c1cfc717d4b89 [file] [log] [blame]
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06001include ../scripts/Makefile.include
Arnaldo Carvalho de Melo630e7a22016-07-22 09:59:24 -03002include ../scripts/Makefile.arch
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06003
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06004ifeq ($(ARCH),x86_64)
5ARCH := x86
6endif
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06007
Josh Poimboeufc1d45c32016-03-02 18:39:37 -06008# always use the host compiler
9CC = gcc
10LD = ld
11AR = ar
12
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060013ifeq ($(srctree),)
14srctree := $(patsubst %/,%,$(dir $(shell pwd)))
15srctree := $(patsubst %/,%,$(dir $(srctree)))
16endif
17
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060018SUBCMD_SRCDIR = $(srctree)/tools/lib/subcmd/
19LIBSUBCMD_OUTPUT = $(if $(OUTPUT),$(OUTPUT),$(PWD)/)
20LIBSUBCMD = $(LIBSUBCMD_OUTPUT)libsubcmd.a
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060021
22OBJTOOL := $(OUTPUT)objtool
23OBJTOOL_IN := $(OBJTOOL)-in.o
24
25all: $(OBJTOOL)
26
Arnaldo Carvalho de Melo0cf6eb62016-07-22 16:28:46 -030027INCLUDES := -I$(srctree)/tools/include -I$(srctree)/tools/arch/$(HOSTARCH)/include/uapi
Josh Poimboeufd435fb52016-03-09 00:06:53 -060028CFLAGS += -Wall -Werror $(EXTRA_WARNINGS) -fomit-frame-pointer -O2 -g $(INCLUDES)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060029LDFLAGS += -lelf $(LIBSUBCMD)
30
Jan Beulich2e51f262016-05-16 15:31:07 -050031# Allow old libelf to be used:
32elfshdr := $(shell echo '\#include <libelf.h>' | $(CC) $(CFLAGS) -x c -E - | grep elf_getshdr)
33CFLAGS += $(if $(elfshdr),,-DLIBELF_USE_DEPRECATED)
34
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060035AWK = awk
Josh Poimboeuf60cbdf52016-07-22 14:19:20 -050036export srctree OUTPUT CFLAGS SRCARCH AWK
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060037include $(srctree)/tools/build/Makefile.include
38
39$(OBJTOOL_IN): fixdep FORCE
40 @$(MAKE) $(build)=objtool
41
Arnaldo Carvalho de Melo1a4bf282016-07-13 15:33:54 -030042# Busybox's diff doesn't have -I, avoid warning in that case
43#
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060044$(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN)
Arnaldo Carvalho de Melo1a4bf282016-07-13 15:33:54 -030045 @(diff -I 2>&1 | grep -q 'option requires an argument' && \
46 test -d ../../kernel -a -d ../../tools -a -d ../objtool && (( \
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060047 diff -I'^#include' arch/x86/insn/insn.c ../../arch/x86/lib/insn.c >/dev/null && \
48 diff -I'^#include' arch/x86/insn/inat.c ../../arch/x86/lib/inat.c >/dev/null && \
49 diff arch/x86/insn/x86-opcode-map.txt ../../arch/x86/lib/x86-opcode-map.txt >/dev/null && \
50 diff arch/x86/insn/gen-insn-attr-x86.awk ../../arch/x86/tools/gen-insn-attr-x86.awk >/dev/null && \
51 diff -I'^#include' arch/x86/insn/insn.h ../../arch/x86/include/asm/insn.h >/dev/null && \
52 diff -I'^#include' arch/x86/insn/inat.h ../../arch/x86/include/asm/inat.h >/dev/null && \
53 diff -I'^#include' arch/x86/insn/inat_types.h ../../arch/x86/include/asm/inat_types.h >/dev/null) \
Josh Poimboeuf2af04ea2016-07-28 19:15:00 -050054 || echo "warning: objtool: x86 instruction decoder differs from kernel" >&2 )) || true
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060055 $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@
56
57
58$(LIBSUBCMD): fixdep FORCE
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060059 $(Q)$(MAKE) -C $(SUBCMD_SRCDIR) OUTPUT=$(LIBSUBCMD_OUTPUT)
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060060
Josh Poimboeufc1d45c32016-03-02 18:39:37 -060061clean:
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060062 $(call QUIET_CLEAN, objtool) $(RM) $(OBJTOOL)
63 $(Q)find $(OUTPUT) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
64 $(Q)$(RM) $(OUTPUT)arch/x86/insn/inat-tables.c $(OUTPUT)fixdep
65
66FORCE:
67
68.PHONY: clean FORCE