~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/Makefile.host

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/Makefile.host (Version linux-6.11.5) and /scripts/Makefile.host (Version linux-4.11.12)


  1 # SPDX-License-Identifier: GPL-2.0             << 
  2                                                << 
  3 # LEX                                          << 
  4 # -------------------------------------------- << 
  5 quiet_cmd_flex = LEX     $@                    << 
  6       cmd_flex = $(LEX) -o$@ -L $<             << 
  7                                                << 
  8 $(obj)/%.lex.c: $(src)/%.l FORCE               << 
  9         $(call if_changed,flex)                << 
 10                                                << 
 11 # YACC                                         << 
 12 # -------------------------------------------- << 
 13 quiet_cmd_bison = YACC    $(basename $@).[ch]  << 
 14       cmd_bison = $(YACC) -o $(basename $@).c  << 
 15                                                << 
 16 $(obj)/%.tab.c $(obj)/%.tab.h: $(src)/%.y FORC << 
 17         $(call if_changed,bison)               << 
 18                                                << 
 19 # ============================================      1 # ==========================================================================
 20 # Building binaries on the host system              2 # Building binaries on the host system
 21 # Binaries are used during the compilation of       3 # Binaries are used during the compilation of the kernel, for example
 22 # to preprocess a data file.                        4 # to preprocess a data file.
 23 #                                                   5 #
 24 # Both C and C++ are supported, but preferred       6 # Both C and C++ are supported, but preferred language is C for such utilities.
 25 # Rust is also supported, but it may only be u << 
 26 # toolchain is required to be available (e.g.  << 
 27 #                                                   7 #
 28 # Sample syntax (see Documentation/kbuild/make !!   8 # Sample syntax (see Documentation/kbuild/makefiles.txt for reference)
 29 # hostprogs := bin2hex                         !!   9 # hostprogs-y := bin2hex
 30 # Will compile bin2hex.c and create an executa     10 # Will compile bin2hex.c and create an executable named bin2hex
 31 #                                                  11 #
 32 # hostprogs     := lxdialog                    !!  12 # hostprogs-y    := lxdialog
 33 # lxdialog-objs := checklist.o lxdialog.o          13 # lxdialog-objs := checklist.o lxdialog.o
 34 # Will compile lxdialog.c and checklist.c, and     14 # Will compile lxdialog.c and checklist.c, and then link the executable
 35 # lxdialog, based on checklist.o and lxdialog.     15 # lxdialog, based on checklist.o and lxdialog.o
 36 #                                                  16 #
 37 # hostprogs       := qconf                     !!  17 # hostprogs-y      := qconf
 38 # qconf-cxxobjs   := qconf.o                       18 # qconf-cxxobjs   := qconf.o
 39 # qconf-objs      := menu.o                        19 # qconf-objs      := menu.o
 40 # Will compile qconf as a C++ program, and men     20 # Will compile qconf as a C++ program, and menu as a C program.
 41 # They are linked as C++ code to the executabl     21 # They are linked as C++ code to the executable qconf
 42 #                                              !!  22 
 43 # hostprogs   := target                        !!  23 # hostcc-option
 44 # target-rust := y                             !!  24 # Usage: cflags-y += $(call hostcc-option,-march=winchip-c6,-march=i586)
 45 # Will compile `target` as a Rust program, usi !!  25 
 46 # The crate may consist of several source file !!  26 hostcc-option = $(call try-run,\
                                                   >>  27         $(HOSTCC) $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
                                                   >>  28 
                                                   >>  29 __hostprogs := $(sort $(hostprogs-y) $(hostprogs-m))
                                                   >>  30 host-cshlib := $(sort $(hostlibs-y) $(hostlibs-m))
                                                   >>  31 host-cxxshlib := $(sort $(hostcxxlibs-y) $(hostcxxlibs-m))
 47                                                    32 
 48 # C code                                           33 # C code
 49 # Executables compiled from a single .c file       34 # Executables compiled from a single .c file
 50 host-csingle    := $(foreach m,$(hostprogs), \ !!  35 host-csingle    := $(foreach m,$(__hostprogs), \
 51                         $(if $($(m)-objs)$($(m !!  36                         $(if $($(m)-objs)$($(m)-cxxobjs),,$(m)))
 52                                                    37 
 53 # C executables linked based on several .o fil     38 # C executables linked based on several .o files
 54 host-cmulti     := $(foreach m,$(hostprogs),\  !!  39 host-cmulti     := $(foreach m,$(__hostprogs),\
 55                    $(if $($(m)-cxxobjs)$($(m)- !!  40                    $(if $($(m)-cxxobjs),,$(if $($(m)-objs),$(m))))
 56                                                    41 
 57 # Object (.o) files compiled from .c files         42 # Object (.o) files compiled from .c files
 58 host-cobjs      := $(sort $(foreach m,$(hostpr !!  43 host-cobjs      := $(sort $(foreach m,$(__hostprogs),$($(m)-objs)))
 59                                                    44 
 60 # C++ code                                         45 # C++ code
 61 # C++ executables compiled from at least one .     46 # C++ executables compiled from at least one .cc file
 62 # and zero or more .c files                        47 # and zero or more .c files
 63 host-cxxmulti   := $(foreach m,$(hostprogs),$( !!  48 host-cxxmulti   := $(foreach m,$(__hostprogs),$(if $($(m)-cxxobjs),$(m)))
 64                                                    49 
 65 # C++ Object (.o) files compiled from .cc file     50 # C++ Object (.o) files compiled from .cc files
 66 host-cxxobjs    := $(sort $(foreach m,$(host-c     51 host-cxxobjs    := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs)))
 67                                                    52 
 68 # Rust code                                    !!  53 # Object (.o) files used by the shared libaries
 69 # Executables compiled from a single Rust crat !!  54 host-cshobjs    := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs))))
 70 # one or more .rs files)                       !!  55 host-cxxshobjs  := $(sort $(foreach m,$(host-cxxshlib),$($(m:.so=-objs))))
 71 host-rust       := $(foreach m,$(hostprogs),$( << 
 72                                                    56 
                                                   >>  57 # output directory for programs/.o files
                                                   >>  58 # hostprogs-y := tools/build may have been specified.
                                                   >>  59 # Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation
                                                   >>  60 host-objdirs := $(dir $(__hostprogs) $(host-cobjs) $(host-cxxobjs))
                                                   >>  61 
                                                   >>  62 host-objdirs := $(strip $(sort $(filter-out ./,$(host-objdirs))))
                                                   >>  63 
                                                   >>  64 
                                                   >>  65 __hostprogs     := $(addprefix $(obj)/,$(__hostprogs))
 73 host-csingle    := $(addprefix $(obj)/,$(host-     66 host-csingle    := $(addprefix $(obj)/,$(host-csingle))
 74 host-cmulti     := $(addprefix $(obj)/,$(host-     67 host-cmulti     := $(addprefix $(obj)/,$(host-cmulti))
 75 host-cobjs      := $(addprefix $(obj)/,$(host-     68 host-cobjs      := $(addprefix $(obj)/,$(host-cobjs))
 76 host-cxxmulti   := $(addprefix $(obj)/,$(host-     69 host-cxxmulti   := $(addprefix $(obj)/,$(host-cxxmulti))
 77 host-cxxobjs    := $(addprefix $(obj)/,$(host-     70 host-cxxobjs    := $(addprefix $(obj)/,$(host-cxxobjs))
 78 host-rust       := $(addprefix $(obj)/,$(host- !!  71 host-cshlib     := $(addprefix $(obj)/,$(host-cshlib))
                                                   >>  72 host-cxxshlib   := $(addprefix $(obj)/,$(host-cxxshlib))
                                                   >>  73 host-cshobjs    := $(addprefix $(obj)/,$(host-cshobjs))
                                                   >>  74 host-cxxshobjs  := $(addprefix $(obj)/,$(host-cxxshobjs))
                                                   >>  75 host-objdirs    := $(addprefix $(obj)/,$(host-objdirs))
                                                   >>  76 
                                                   >>  77 obj-dirs += $(host-objdirs)
 79                                                    78 
 80 #####                                              79 #####
 81 # Handle options to gcc. Support building with     80 # Handle options to gcc. Support building with separate output directory
 82                                                    81 
 83 hostc_flags    = -Wp,-MMD,$(depfile) \         !!  82 _hostc_flags   = $(HOSTCFLAGS)   $(HOST_EXTRACFLAGS)   \
 84                  $(KBUILD_HOSTCFLAGS) $(HOST_E !!  83                  $(HOSTCFLAGS_$(basetarget).o)
 85                  $(HOSTCFLAGS_$(target-stem).o !!  84 _hostcxx_flags = $(HOSTCXXFLAGS) $(HOST_EXTRACXXFLAGS) \
 86 hostcxx_flags  = -Wp,-MMD,$(depfile) \         !!  85                  $(HOSTCXXFLAGS_$(basetarget).o)
 87                  $(KBUILD_HOSTCXXFLAGS) $(HOST !!  86 
 88                  $(HOSTCXXFLAGS_$(target-stem) !!  87 ifeq ($(KBUILD_SRC),)
 89                                                !!  88 __hostc_flags   = $(_hostc_flags)
 90 # `--out-dir` is required to avoid temporaries !!  89 __hostcxx_flags = $(_hostcxx_flags)
 91 # current working directory, which may be not  !!  90 else
 92 # modules case.                                !!  91 __hostc_flags   = -I$(obj) $(call flags,_hostc_flags)
 93 hostrust_flags = --out-dir $(dir $@) --emit=de !!  92 __hostcxx_flags = -I$(obj) $(call flags,_hostcxx_flags)
 94                  -Clinker-flavor=gcc -Clinker= << 
 95                  -Clink-args='$(call escsq,$(K << 
 96                  $(KBUILD_HOSTRUSTFLAGS) $(HOS << 
 97                  $(HOSTRUSTFLAGS_$(target-stem << 
 98                                                << 
 99 # $(objtree)/$(obj) for including generated he << 
100 ifeq ($(KBUILD_EXTMOD),)                       << 
101 ifdef building_out_of_srctree                  << 
102 hostc_flags   += -I $(objtree)/$(obj)          << 
103 hostcxx_flags += -I $(objtree)/$(obj)          << 
104 endif                                          << 
105 endif                                              93 endif
106                                                    94 
                                                   >>  95 hostc_flags    = -Wp,-MD,$(depfile) $(__hostc_flags)
                                                   >>  96 hostcxx_flags  = -Wp,-MD,$(depfile) $(__hostcxx_flags)
                                                   >>  97 
107 #####                                              98 #####
108 # Compile programs on the host                     99 # Compile programs on the host
109                                                   100 
110 # Create executable from a single .c file         101 # Create executable from a single .c file
111 # host-csingle -> Executable                      102 # host-csingle -> Executable
112 quiet_cmd_host-csingle  = HOSTCC  $@              103 quiet_cmd_host-csingle  = HOSTCC  $@
113       cmd_host-csingle  = $(HOSTCC) $(hostc_fl !! 104       cmd_host-csingle  = $(HOSTCC) $(hostc_flags) -o $@ $< \
114                 $(KBUILD_HOSTLDLIBS) $(HOSTLDL !! 105                 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
115 $(host-csingle): $(obj)/%: $(obj)/%.c FORCE    !! 106 $(host-csingle): $(obj)/%: $(src)/%.c FORCE
116         $(call if_changed_dep,host-csingle)       107         $(call if_changed_dep,host-csingle)
117                                                   108 
118 # Link an executable based on list of .o files    109 # Link an executable based on list of .o files, all plain c
119 # host-cmulti -> executable                       110 # host-cmulti -> executable
120 quiet_cmd_host-cmulti   = HOSTLD  $@              111 quiet_cmd_host-cmulti   = HOSTLD  $@
121       cmd_host-cmulti   = $(HOSTCC) $(KBUILD_H !! 112       cmd_host-cmulti   = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \
122                           $(addprefix $(obj)/, !! 113                           $(addprefix $(obj)/,$($(@F)-objs)) \
123                           $(KBUILD_HOSTLDLIBS) !! 114                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
124 $(host-cmulti): FORCE                             115 $(host-cmulti): FORCE
125         $(call if_changed,host-cmulti)            116         $(call if_changed,host-cmulti)
126 $(call multi_depend, $(host-cmulti), , -objs)     117 $(call multi_depend, $(host-cmulti), , -objs)
127                                                   118 
128 # Create .o file from a single .c file            119 # Create .o file from a single .c file
129 # host-cobjs -> .o                                120 # host-cobjs -> .o
130 quiet_cmd_host-cobjs    = HOSTCC  $@              121 quiet_cmd_host-cobjs    = HOSTCC  $@
131       cmd_host-cobjs    = $(HOSTCC) $(hostc_fl    122       cmd_host-cobjs    = $(HOSTCC) $(hostc_flags) -c -o $@ $<
132 $(host-cobjs): $(obj)/%.o: $(obj)/%.c FORCE    !! 123 $(host-cobjs): $(obj)/%.o: $(src)/%.c FORCE
133         $(call if_changed_dep,host-cobjs)         124         $(call if_changed_dep,host-cobjs)
134                                                   125 
135 # Link an executable based on list of .o files    126 # Link an executable based on list of .o files, a mixture of .c and .cc
136 # host-cxxmulti -> executable                     127 # host-cxxmulti -> executable
137 quiet_cmd_host-cxxmulti = HOSTLD  $@              128 quiet_cmd_host-cxxmulti = HOSTLD  $@
138       cmd_host-cxxmulti = $(HOSTCXX) $(KBUILD_ !! 129       cmd_host-cxxmulti = $(HOSTCXX) $(HOSTLDFLAGS) -o $@ \
139                           $(foreach o,objs cxx    130                           $(foreach o,objs cxxobjs,\
140                           $(addprefix $(obj)/, !! 131                           $(addprefix $(obj)/,$($(@F)-$(o)))) \
141                           $(KBUILD_HOSTLDLIBS) !! 132                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
142 $(host-cxxmulti): FORCE                           133 $(host-cxxmulti): FORCE
143         $(call if_changed,host-cxxmulti)          134         $(call if_changed,host-cxxmulti)
144 $(call multi_depend, $(host-cxxmulti), , -objs    135 $(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs)
145                                                   136 
146 # Create .o file from a single .cc (C++) file     137 # Create .o file from a single .cc (C++) file
147 quiet_cmd_host-cxxobjs  = HOSTCXX $@              138 quiet_cmd_host-cxxobjs  = HOSTCXX $@
148       cmd_host-cxxobjs  = $(HOSTCXX) $(hostcxx    139       cmd_host-cxxobjs  = $(HOSTCXX) $(hostcxx_flags) -c -o $@ $<
149 $(host-cxxobjs): $(obj)/%.o: $(obj)/%.cc FORCE !! 140 $(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE
150         $(call if_changed_dep,host-cxxobjs)       141         $(call if_changed_dep,host-cxxobjs)
151                                                   142 
152 # Create executable from a single Rust crate ( !! 143 # Compile .c file, create position independent .o file
153 # one or more `.rs` files)                     !! 144 # host-cshobjs -> .o
154 # host-rust -> Executable                      !! 145 quiet_cmd_host-cshobjs  = HOSTCC  -fPIC $@
155 quiet_cmd_host-rust     = HOSTRUSTC $@         !! 146       cmd_host-cshobjs  = $(HOSTCC) $(hostc_flags) -fPIC -c -o $@ $<
156       cmd_host-rust     = \                    !! 147 $(host-cshobjs): $(obj)/%.o: $(src)/%.c FORCE
157         $(HOSTRUSTC) $(hostrust_flags) --emit= !! 148         $(call if_changed_dep,host-cshobjs)
158 $(host-rust): $(obj)/%: $(src)/%.rs FORCE      !! 149 
159         +$(call if_changed_dep,host-rust)      !! 150 # Compile .c file, create position independent .o file
                                                   >> 151 # Note that plugin capable gcc versions can be either C or C++ based
                                                   >> 152 # therefore plugin source files have to be compilable in both C and C++ mode.
                                                   >> 153 # This is why a C++ compiler is invoked on a .c file.
                                                   >> 154 # host-cxxshobjs -> .o
                                                   >> 155 quiet_cmd_host-cxxshobjs        = HOSTCXX -fPIC $@
                                                   >> 156       cmd_host-cxxshobjs        = $(HOSTCXX) $(hostcxx_flags) -fPIC -c -o $@ $<
                                                   >> 157 $(host-cxxshobjs): $(obj)/%.o: $(src)/%.c FORCE
                                                   >> 158         $(call if_changed_dep,host-cxxshobjs)
                                                   >> 159 
                                                   >> 160 # Link a shared library, based on position independent .o files
                                                   >> 161 # *.o -> .so shared library (host-cshlib)
                                                   >> 162 quiet_cmd_host-cshlib   = HOSTLLD -shared $@
                                                   >> 163       cmd_host-cshlib   = $(HOSTCC) $(HOSTLDFLAGS) -shared -o $@ \
                                                   >> 164                           $(addprefix $(obj)/,$($(@F:.so=-objs))) \
                                                   >> 165                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
                                                   >> 166 $(host-cshlib): FORCE
                                                   >> 167         $(call if_changed,host-cshlib)
                                                   >> 168 $(call multi_depend, $(host-cshlib), .so, -objs)
                                                   >> 169 
                                                   >> 170 # Link a shared library, based on position independent .o files
                                                   >> 171 # *.o -> .so shared library (host-cxxshlib)
                                                   >> 172 quiet_cmd_host-cxxshlib = HOSTLLD -shared $@
                                                   >> 173       cmd_host-cxxshlib = $(HOSTCXX) $(HOSTLDFLAGS) -shared -o $@ \
                                                   >> 174                           $(addprefix $(obj)/,$($(@F:.so=-objs))) \
                                                   >> 175                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
                                                   >> 176 $(host-cxxshlib): FORCE
                                                   >> 177         $(call if_changed,host-cxxshlib)
                                                   >> 178 $(call multi_depend, $(host-cxxshlib), .so, -objs)
160                                                   179 
161 targets += $(host-csingle) $(host-cmulti) $(ho !! 180 targets += $(host-csingle)  $(host-cmulti) $(host-cobjs)\
162            $(host-cxxmulti) $(host-cxxobjs) $( !! 181            $(host-cxxmulti) $(host-cxxobjs) $(host-cshlib) $(host-cshobjs) $(host-cxxshlib) $(host-cxxshobjs)
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php