blob: ab5980f917141e9f90f52a9ae49e71901104196f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# ==========================================================================
2# Building binaries on the host system
3# Binaries are used during the compilation of the kernel, for example
4# to preprocess a data file.
5#
Robert P. J. Day3156fd02008-02-18 04:48:20 -05006# Both C and C++ are supported, but preferred language is C for such utilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#
Robert P. J. Day3156fd02008-02-18 04:48:20 -05008# Sample syntax (see Documentation/kbuild/makefiles.txt for reference)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009# hostprogs-y := bin2hex
10# Will compile bin2hex.c and create an executable named bin2hex
11#
12# hostprogs-y := lxdialog
13# lxdialog-objs := checklist.o lxdialog.o
14# Will compile lxdialog.c and checklist.c, and then link the executable
15# lxdialog, based on checklist.o and lxdialog.o
16#
17# hostprogs-y := qconf
18# qconf-cxxobjs := qconf.o
19# qconf-objs := menu.o
20# Will compile qconf as a C++ program, and menu as a C program.
21# They are linked as C++ code to the executable qconf
22
Ross Biro8f5cbd72006-09-16 12:15:39 -070023__hostprogs := $(sort $(hostprogs-y) $(hostprogs-m))
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025# C code
26# Executables compiled from a single .c file
Masahiro Yamadaedb950c2014-07-16 16:12:20 +090027host-csingle := $(foreach m,$(__hostprogs), \
28 $(if $($(m)-objs)$($(m)-cxxobjs),,$(m)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30# C executables linked based on several .o files
31host-cmulti := $(foreach m,$(__hostprogs),\
32 $(if $($(m)-cxxobjs),,$(if $($(m)-objs),$(m))))
33
34# Object (.o) files compiled from .c files
35host-cobjs := $(sort $(foreach m,$(__hostprogs),$($(m)-objs)))
36
37# C++ code
Masahiro Yamadad8d9efe2014-07-16 16:12:19 +090038# C++ executables compiled from at least one .cc file
Linus Torvalds1da177e2005-04-16 15:20:36 -070039# and zero or more .c files
40host-cxxmulti := $(foreach m,$(__hostprogs),$(if $($(m)-cxxobjs),$(m)))
41
42# C++ Object (.o) files compiled from .cc files
43host-cxxobjs := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs)))
44
Sam Ravnborg7b5b8202006-08-07 21:55:33 +020045# output directory for programs/.o files
Masahiro Yamada1791ff72014-07-16 16:12:23 +090046# hostprogs-y := tools/build may have been specified.
47# Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation
48host-objdirs := $(dir $(__hostprogs) $(host-cobjs) $(host-cxxobjs))
Sam Ravnborg7b5b8202006-08-07 21:55:33 +020049
50host-objdirs := $(strip $(sort $(filter-out ./,$(host-objdirs))))
51
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053__hostprogs := $(addprefix $(obj)/,$(__hostprogs))
54host-csingle := $(addprefix $(obj)/,$(host-csingle))
55host-cmulti := $(addprefix $(obj)/,$(host-cmulti))
56host-cobjs := $(addprefix $(obj)/,$(host-cobjs))
57host-cxxmulti := $(addprefix $(obj)/,$(host-cxxmulti))
58host-cxxobjs := $(addprefix $(obj)/,$(host-cxxobjs))
Pavel Roskin9870a932006-06-01 21:28:50 -040059host-objdirs := $(addprefix $(obj)/,$(host-objdirs))
60
61obj-dirs += $(host-objdirs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#####
64# Handle options to gcc. Support building with separate output directory
65
Sam Ravnborg5e8d7802006-07-01 09:58:02 +020066_hostc_flags = $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) \
67 $(HOSTCFLAGS_$(basetarget).o)
68_hostcxx_flags = $(HOSTCXXFLAGS) $(HOST_EXTRACXXFLAGS) \
69 $(HOSTCXXFLAGS_$(basetarget).o)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71ifeq ($(KBUILD_SRC),)
72__hostc_flags = $(_hostc_flags)
73__hostcxx_flags = $(_hostcxx_flags)
74else
75__hostc_flags = -I$(obj) $(call flags,_hostc_flags)
76__hostcxx_flags = -I$(obj) $(call flags,_hostcxx_flags)
77endif
78
79hostc_flags = -Wp,-MD,$(depfile) $(__hostc_flags)
80hostcxx_flags = -Wp,-MD,$(depfile) $(__hostcxx_flags)
81
82#####
83# Compile programs on the host
84
85# Create executable from a single .c file
86# host-csingle -> Executable
87quiet_cmd_host-csingle = HOSTCC $@
Matthias Urlichse0af0d82005-02-18 10:23:41 +010088 cmd_host-csingle = $(HOSTCC) $(hostc_flags) -o $@ $< \
89 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
Sam Ravnborg767e5812007-05-06 09:23:45 +020090$(host-csingle): $(obj)/%: $(src)/%.c FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 $(call if_changed_dep,host-csingle)
92
93# Link an executable based on list of .o files, all plain c
94# host-cmulti -> executable
95quiet_cmd_host-cmulti = HOSTLD $@
96 cmd_host-cmulti = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \
97 $(addprefix $(obj)/,$($(@F)-objs)) \
98 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
Masahiro Yamada62e22102014-07-16 16:12:21 +090099$(host-cmulti): $(obj)/%: $(host-cobjs) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 $(call if_changed,host-cmulti)
101
102# Create .o file from a single .c file
103# host-cobjs -> .o
104quiet_cmd_host-cobjs = HOSTCC $@
105 cmd_host-cobjs = $(HOSTCC) $(hostc_flags) -c -o $@ $<
Sam Ravnborg767e5812007-05-06 09:23:45 +0200106$(host-cobjs): $(obj)/%.o: $(src)/%.c FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 $(call if_changed_dep,host-cobjs)
108
109# Link an executable based on list of .o files, a mixture of .c and .cc
110# host-cxxmulti -> executable
111quiet_cmd_host-cxxmulti = HOSTLD $@
112 cmd_host-cxxmulti = $(HOSTCXX) $(HOSTLDFLAGS) -o $@ \
113 $(foreach o,objs cxxobjs,\
114 $(addprefix $(obj)/,$($(@F)-$(o)))) \
115 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
Masahiro Yamada62e22102014-07-16 16:12:21 +0900116$(host-cxxmulti): $(obj)/%: $(host-cobjs) $(host-cxxobjs) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 $(call if_changed,host-cxxmulti)
118
119# Create .o file from a single .cc (C++) file
120quiet_cmd_host-cxxobjs = HOSTCXX $@
121 cmd_host-cxxobjs = $(HOSTCXX) $(hostcxx_flags) -c -o $@ $<
Sam Ravnborg767e5812007-05-06 09:23:45 +0200122$(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 $(call if_changed_dep,host-cxxobjs)
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125targets += $(host-csingle) $(host-cmulti) $(host-cobjs)\
Masahiro Yamada62e22102014-07-16 16:12:21 +0900126 $(host-cxxmulti) $(host-cxxobjs)