1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 include ../scripts/Makefile.include 2 include ../scripts/Makefile.include 3 include ../scripts/Makefile.arch 3 include ../scripts/Makefile.arch 4 4 >> 5 ifeq ($(ARCH),x86_64) >> 6 ARCH := x86 >> 7 endif >> 8 >> 9 # always use the host compiler >> 10 HOSTAR ?= ar >> 11 HOSTCC ?= gcc >> 12 HOSTLD ?= ld >> 13 AR = $(HOSTAR) >> 14 CC = $(HOSTCC) >> 15 LD = $(HOSTLD) >> 16 5 ifeq ($(srctree),) 17 ifeq ($(srctree),) 6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) 18 srctree := $(patsubst %/,%,$(dir $(CURDIR))) 7 srctree := $(patsubst %/,%,$(dir $(srctree))) 19 srctree := $(patsubst %/,%,$(dir $(srctree))) 8 endif 20 endif 9 21 10 LIBSUBCMD_DIR = $(srctree)/tools/lib/subcmd/ !! 22 SUBCMD_SRCDIR = $(srctree)/tools/lib/subcmd/ 11 ifneq ($(OUTPUT),) !! 23 LIBSUBCMD_OUTPUT = $(if $(OUTPUT),$(OUTPUT),$(CURDIR)/) 12 LIBSUBCMD_OUTPUT = $(abspath $(OUTPUT))/libs !! 24 LIBSUBCMD = $(LIBSUBCMD_OUTPUT)libsubcmd.a 13 else << 14 LIBSUBCMD_OUTPUT = $(CURDIR)/libsubcmd << 15 endif << 16 LIBSUBCMD = $(LIBSUBCMD_OUTPUT)/libsubcmd.a << 17 25 18 OBJTOOL := $(OUTPUT)objtool 26 OBJTOOL := $(OUTPUT)objtool 19 OBJTOOL_IN := $(OBJTOOL)-in.o 27 OBJTOOL_IN := $(OBJTOOL)-in.o 20 28 21 LIBELF_FLAGS := $(shell $(HOSTPKG_CONFIG) libe !! 29 LIBELF_FLAGS := $(shell pkg-config libelf --cflags 2>/dev/null) 22 LIBELF_LIBS := $(shell $(HOSTPKG_CONFIG) libe !! 30 LIBELF_LIBS := $(shell pkg-config libelf --libs 2>/dev/null || echo -lelf) 23 31 24 all: $(OBJTOOL) 32 all: $(OBJTOOL) 25 33 26 INCLUDES := -I$(srctree)/tools/include \ 34 INCLUDES := -I$(srctree)/tools/include \ 27 -I$(srctree)/tools/arch/$(HOSTARCH 35 -I$(srctree)/tools/arch/$(HOSTARCH)/include/uapi \ 28 -I$(srctree)/tools/arch/$(SRCARCH) !! 36 -I$(srctree)/tools/objtool/arch/$(ARCH)/include 29 -I$(srctree)/tools/objtool/include !! 37 WARNINGS := $(EXTRA_WARNINGS) -Wno-switch-default -Wno-switch-enum -Wno-packed 30 -I$(srctree)/tools/objtool/arch/$( !! 38 CFLAGS += -Werror $(WARNINGS) $(KBUILD_HOSTCFLAGS) -g $(INCLUDES) $(LIBELF_FLAGS) 31 -I$(LIBSUBCMD_OUTPUT)/include !! 39 LDFLAGS += $(LIBELF_LIBS) $(LIBSUBCMD) $(KBUILD_HOSTLDFLAGS) 32 # Note, EXTRA_WARNINGS here was determined for << 33 # is passed here to match a legacy behavior. << 34 WARNINGS := $(EXTRA_WARNINGS) -Wno-switch-defa << 35 OBJTOOL_CFLAGS := -Werror $(WARNINGS) $(KBUILD << 36 OBJTOOL_LDFLAGS := $(LIBELF_LIBS) $(LIBSUBCMD) << 37 40 38 # Allow old libelf to be used: 41 # Allow old libelf to be used: 39 elfshdr := $(shell echo '$(pound)include <libe !! 42 elfshdr := $(shell echo '$(pound)include <libelf.h>' | $(CC) $(CFLAGS) -x c -E - | grep elf_getshdr) 40 OBJTOOL_CFLAGS += $(if $(elfshdr),,-DLIBELF_US !! 43 CFLAGS += $(if $(elfshdr),,-DLIBELF_USE_DEPRECATED) 41 << 42 # Always want host compilation. << 43 HOST_OVERRIDES := CC="$(HOSTCC)" LD="$(HOSTLD) << 44 44 45 AWK = awk 45 AWK = awk 46 MKDIR = mkdir << 47 << 48 ifeq ($(V),1) << 49 Q = << 50 else << 51 Q = @ << 52 endif << 53 << 54 BUILD_ORC := n << 55 << 56 ifeq ($(SRCARCH),x86) << 57 BUILD_ORC := y << 58 endif << 59 << 60 ifeq ($(SRCARCH),loongarch) << 61 BUILD_ORC := y << 62 endif << 63 << 64 export BUILD_ORC << 65 export srctree OUTPUT CFLAGS SRCARCH AWK 46 export srctree OUTPUT CFLAGS SRCARCH AWK 66 include $(srctree)/tools/build/Makefile.includ 47 include $(srctree)/tools/build/Makefile.include 67 48 68 $(OBJTOOL_IN): fixdep $(LIBSUBCMD) FORCE !! 49 $(OBJTOOL_IN): fixdep FORCE 69 $(Q)$(CONFIG_SHELL) ./sync-check.sh !! 50 @$(MAKE) $(build)=objtool 70 $(Q)$(MAKE) $(build)=objtool $(HOST_OV << 71 LDFLAGS="$(OBJTOOL_LDFLAGS)" << 72 << 73 51 74 $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN) 52 $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN) 75 $(QUIET_LINK)$(HOSTCC) $(OBJTOOL_IN) $ !! 53 @$(CONFIG_SHELL) ./sync-check.sh 76 !! 54 $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@ 77 << 78 $(LIBSUBCMD_OUTPUT): << 79 $(Q)$(MKDIR) -p $@ << 80 55 81 $(LIBSUBCMD): fixdep $(LIBSUBCMD_OUTPUT) FORCE << 82 $(Q)$(MAKE) -C $(LIBSUBCMD_DIR) O=$(LI << 83 DESTDIR=$(LIBSUBCMD_OUTPUT) pr << 84 $(HOST_OVERRIDES) EXTRA_CFLAGS << 85 $@ install_headers << 86 56 87 $(LIBSUBCMD)-clean: !! 57 $(LIBSUBCMD): fixdep FORCE 88 $(call QUIET_CLEAN, libsubcmd) !! 58 $(Q)$(MAKE) -C $(SUBCMD_SRCDIR) OUTPUT=$(LIBSUBCMD_OUTPUT) 89 $(Q)$(RM) -r -- $(LIBSUBCMD_OUTPUT) << 90 59 91 clean: $(LIBSUBCMD)-clean !! 60 clean: 92 $(call QUIET_CLEAN, objtool) $(RM) $(O 61 $(call QUIET_CLEAN, objtool) $(RM) $(OBJTOOL) 93 $(Q)find $(OUTPUT) -name '*.o' -delete 62 $(Q)find $(OUTPUT) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete 94 $(Q)$(RM) $(OUTPUT)arch/x86/lib/inat-t 63 $(Q)$(RM) $(OUTPUT)arch/x86/lib/inat-tables.c $(OUTPUT)fixdep 95 64 96 FORCE: 65 FORCE: 97 66 98 .PHONY: clean FORCE 67 .PHONY: clean FORCE
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.