~ [ 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.9.337)


  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 __hostprogs := $(sort $(hostprogs-y) $(hostprogs-m))
 44 # target-rust := y                             !!  24 host-cshlib := $(sort $(hostlibs-y) $(hostlibs-m))
 45 # Will compile `target` as a Rust program, usi !!  25 host-cxxshlib := $(sort $(hostcxxlibs-y) $(hostcxxlibs-m))
 46 # The crate may consist of several source file << 
 47                                                    26 
 48 # C code                                           27 # C code
 49 # Executables compiled from a single .c file       28 # Executables compiled from a single .c file
 50 host-csingle    := $(foreach m,$(hostprogs), \ !!  29 host-csingle    := $(foreach m,$(__hostprogs), \
 51                         $(if $($(m)-objs)$($(m !!  30                         $(if $($(m)-objs)$($(m)-cxxobjs),,$(m)))
 52                                                    31 
 53 # C executables linked based on several .o fil     32 # C executables linked based on several .o files
 54 host-cmulti     := $(foreach m,$(hostprogs),\  !!  33 host-cmulti     := $(foreach m,$(__hostprogs),\
 55                    $(if $($(m)-cxxobjs)$($(m)- !!  34                    $(if $($(m)-cxxobjs),,$(if $($(m)-objs),$(m))))
 56                                                    35 
 57 # Object (.o) files compiled from .c files         36 # Object (.o) files compiled from .c files
 58 host-cobjs      := $(sort $(foreach m,$(hostpr !!  37 host-cobjs      := $(sort $(foreach m,$(__hostprogs),$($(m)-objs)))
 59                                                    38 
 60 # C++ code                                         39 # C++ code
 61 # C++ executables compiled from at least one .     40 # C++ executables compiled from at least one .cc file
 62 # and zero or more .c files                        41 # and zero or more .c files
 63 host-cxxmulti   := $(foreach m,$(hostprogs),$( !!  42 host-cxxmulti   := $(foreach m,$(__hostprogs),$(if $($(m)-cxxobjs),$(m)))
 64                                                    43 
 65 # C++ Object (.o) files compiled from .cc file     44 # C++ Object (.o) files compiled from .cc files
 66 host-cxxobjs    := $(sort $(foreach m,$(host-c     45 host-cxxobjs    := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs)))
 67                                                    46 
 68 # Rust code                                    !!  47 # Object (.o) files used by the shared libaries
 69 # Executables compiled from a single Rust crat !!  48 host-cshobjs    := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs))))
 70 # one or more .rs files)                       !!  49 host-cxxshobjs  := $(sort $(foreach m,$(host-cxxshlib),$($(m:.so=-objs))))
 71 host-rust       := $(foreach m,$(hostprogs),$( !!  50 
                                                   >>  51 # output directory for programs/.o files
                                                   >>  52 # hostprogs-y := tools/build may have been specified.
                                                   >>  53 # Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation
                                                   >>  54 host-objdirs := $(dir $(__hostprogs) $(host-cobjs) $(host-cxxobjs))
 72                                                    55 
                                                   >>  56 host-objdirs := $(strip $(sort $(filter-out ./,$(host-objdirs))))
                                                   >>  57 
                                                   >>  58 
                                                   >>  59 __hostprogs     := $(addprefix $(obj)/,$(__hostprogs))
 73 host-csingle    := $(addprefix $(obj)/,$(host-     60 host-csingle    := $(addprefix $(obj)/,$(host-csingle))
 74 host-cmulti     := $(addprefix $(obj)/,$(host-     61 host-cmulti     := $(addprefix $(obj)/,$(host-cmulti))
 75 host-cobjs      := $(addprefix $(obj)/,$(host-     62 host-cobjs      := $(addprefix $(obj)/,$(host-cobjs))
 76 host-cxxmulti   := $(addprefix $(obj)/,$(host-     63 host-cxxmulti   := $(addprefix $(obj)/,$(host-cxxmulti))
 77 host-cxxobjs    := $(addprefix $(obj)/,$(host-     64 host-cxxobjs    := $(addprefix $(obj)/,$(host-cxxobjs))
 78 host-rust       := $(addprefix $(obj)/,$(host- !!  65 host-cshlib     := $(addprefix $(obj)/,$(host-cshlib))
                                                   >>  66 host-cxxshlib   := $(addprefix $(obj)/,$(host-cxxshlib))
                                                   >>  67 host-cshobjs    := $(addprefix $(obj)/,$(host-cshobjs))
                                                   >>  68 host-cxxshobjs  := $(addprefix $(obj)/,$(host-cxxshobjs))
                                                   >>  69 host-objdirs    := $(addprefix $(obj)/,$(host-objdirs))
                                                   >>  70 
                                                   >>  71 obj-dirs += $(host-objdirs)
 79                                                    72 
 80 #####                                              73 #####
 81 # Handle options to gcc. Support building with     74 # Handle options to gcc. Support building with separate output directory
 82                                                    75 
 83 hostc_flags    = -Wp,-MMD,$(depfile) \         !!  76 _hostc_flags   = $(HOSTCFLAGS)   $(HOST_EXTRACFLAGS)   \
 84                  $(KBUILD_HOSTCFLAGS) $(HOST_E !!  77                  $(HOSTCFLAGS_$(basetarget).o)
 85                  $(HOSTCFLAGS_$(target-stem).o !!  78 _hostcxx_flags = $(HOSTCXXFLAGS) $(HOST_EXTRACXXFLAGS) \
 86 hostcxx_flags  = -Wp,-MMD,$(depfile) \         !!  79                  $(HOSTCXXFLAGS_$(basetarget).o)
 87                  $(KBUILD_HOSTCXXFLAGS) $(HOST !!  80 
 88                  $(HOSTCXXFLAGS_$(target-stem) !!  81 ifeq ($(KBUILD_SRC),)
 89                                                !!  82 __hostc_flags   = $(_hostc_flags)
 90 # `--out-dir` is required to avoid temporaries !!  83 __hostcxx_flags = $(_hostcxx_flags)
 91 # current working directory, which may be not  !!  84 else
 92 # modules case.                                !!  85 __hostc_flags   = -I$(obj) $(call flags,_hostc_flags)
 93 hostrust_flags = --out-dir $(dir $@) --emit=de !!  86 __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                                              87 endif
106                                                    88 
                                                   >>  89 hostc_flags    = -Wp,-MD,$(depfile) $(__hostc_flags)
                                                   >>  90 hostcxx_flags  = -Wp,-MD,$(depfile) $(__hostcxx_flags)
                                                   >>  91 
107 #####                                              92 #####
108 # Compile programs on the host                     93 # Compile programs on the host
109                                                    94 
110 # Create executable from a single .c file          95 # Create executable from a single .c file
111 # host-csingle -> Executable                       96 # host-csingle -> Executable
112 quiet_cmd_host-csingle  = HOSTCC  $@               97 quiet_cmd_host-csingle  = HOSTCC  $@
113       cmd_host-csingle  = $(HOSTCC) $(hostc_fl !!  98       cmd_host-csingle  = $(HOSTCC) $(hostc_flags) -o $@ $< \
114                 $(KBUILD_HOSTLDLIBS) $(HOSTLDL !!  99                 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
115 $(host-csingle): $(obj)/%: $(obj)/%.c FORCE    !! 100 $(host-csingle): $(obj)/%: $(src)/%.c FORCE
116         $(call if_changed_dep,host-csingle)       101         $(call if_changed_dep,host-csingle)
117                                                   102 
118 # Link an executable based on list of .o files    103 # Link an executable based on list of .o files, all plain c
119 # host-cmulti -> executable                       104 # host-cmulti -> executable
120 quiet_cmd_host-cmulti   = HOSTLD  $@              105 quiet_cmd_host-cmulti   = HOSTLD  $@
121       cmd_host-cmulti   = $(HOSTCC) $(KBUILD_H !! 106       cmd_host-cmulti   = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \
122                           $(addprefix $(obj)/, !! 107                           $(addprefix $(obj)/,$($(@F)-objs)) \
123                           $(KBUILD_HOSTLDLIBS) !! 108                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
124 $(host-cmulti): FORCE                             109 $(host-cmulti): FORCE
125         $(call if_changed,host-cmulti)            110         $(call if_changed,host-cmulti)
126 $(call multi_depend, $(host-cmulti), , -objs)     111 $(call multi_depend, $(host-cmulti), , -objs)
127                                                   112 
128 # Create .o file from a single .c file            113 # Create .o file from a single .c file
129 # host-cobjs -> .o                                114 # host-cobjs -> .o
130 quiet_cmd_host-cobjs    = HOSTCC  $@              115 quiet_cmd_host-cobjs    = HOSTCC  $@
131       cmd_host-cobjs    = $(HOSTCC) $(hostc_fl    116       cmd_host-cobjs    = $(HOSTCC) $(hostc_flags) -c -o $@ $<
132 $(host-cobjs): $(obj)/%.o: $(obj)/%.c FORCE    !! 117 $(host-cobjs): $(obj)/%.o: $(src)/%.c FORCE
133         $(call if_changed_dep,host-cobjs)         118         $(call if_changed_dep,host-cobjs)
134                                                   119 
135 # Link an executable based on list of .o files    120 # Link an executable based on list of .o files, a mixture of .c and .cc
136 # host-cxxmulti -> executable                     121 # host-cxxmulti -> executable
137 quiet_cmd_host-cxxmulti = HOSTLD  $@              122 quiet_cmd_host-cxxmulti = HOSTLD  $@
138       cmd_host-cxxmulti = $(HOSTCXX) $(KBUILD_ !! 123       cmd_host-cxxmulti = $(HOSTCXX) $(HOSTLDFLAGS) -o $@ \
139                           $(foreach o,objs cxx    124                           $(foreach o,objs cxxobjs,\
140                           $(addprefix $(obj)/, !! 125                           $(addprefix $(obj)/,$($(@F)-$(o)))) \
141                           $(KBUILD_HOSTLDLIBS) !! 126                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
142 $(host-cxxmulti): FORCE                           127 $(host-cxxmulti): FORCE
143         $(call if_changed,host-cxxmulti)          128         $(call if_changed,host-cxxmulti)
144 $(call multi_depend, $(host-cxxmulti), , -objs    129 $(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs)
145                                                   130 
146 # Create .o file from a single .cc (C++) file     131 # Create .o file from a single .cc (C++) file
147 quiet_cmd_host-cxxobjs  = HOSTCXX $@              132 quiet_cmd_host-cxxobjs  = HOSTCXX $@
148       cmd_host-cxxobjs  = $(HOSTCXX) $(hostcxx    133       cmd_host-cxxobjs  = $(HOSTCXX) $(hostcxx_flags) -c -o $@ $<
149 $(host-cxxobjs): $(obj)/%.o: $(obj)/%.cc FORCE !! 134 $(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE
150         $(call if_changed_dep,host-cxxobjs)       135         $(call if_changed_dep,host-cxxobjs)
151                                                   136 
152 # Create executable from a single Rust crate ( !! 137 # Compile .c file, create position independent .o file
153 # one or more `.rs` files)                     !! 138 # host-cshobjs -> .o
154 # host-rust -> Executable                      !! 139 quiet_cmd_host-cshobjs  = HOSTCC  -fPIC $@
155 quiet_cmd_host-rust     = HOSTRUSTC $@         !! 140       cmd_host-cshobjs  = $(HOSTCC) $(hostc_flags) -fPIC -c -o $@ $<
156       cmd_host-rust     = \                    !! 141 $(host-cshobjs): $(obj)/%.o: $(src)/%.c FORCE
157         $(HOSTRUSTC) $(hostrust_flags) --emit= !! 142         $(call if_changed_dep,host-cshobjs)
158 $(host-rust): $(obj)/%: $(src)/%.rs FORCE      !! 143 
159         +$(call if_changed_dep,host-rust)      !! 144 # Compile .c file, create position independent .o file
                                                   >> 145 # Note that plugin capable gcc versions can be either C or C++ based
                                                   >> 146 # therefore plugin source files have to be compilable in both C and C++ mode.
                                                   >> 147 # This is why a C++ compiler is invoked on a .c file.
                                                   >> 148 # host-cxxshobjs -> .o
                                                   >> 149 quiet_cmd_host-cxxshobjs        = HOSTCXX -fPIC $@
                                                   >> 150       cmd_host-cxxshobjs        = $(HOSTCXX) $(hostcxx_flags) -fPIC -c -o $@ $<
                                                   >> 151 $(host-cxxshobjs): $(obj)/%.o: $(src)/%.c FORCE
                                                   >> 152         $(call if_changed_dep,host-cxxshobjs)
                                                   >> 153 
                                                   >> 154 # Link a shared library, based on position independent .o files
                                                   >> 155 # *.o -> .so shared library (host-cshlib)
                                                   >> 156 quiet_cmd_host-cshlib   = HOSTLLD -shared $@
                                                   >> 157       cmd_host-cshlib   = $(HOSTCC) $(HOSTLDFLAGS) -shared -o $@ \
                                                   >> 158                           $(addprefix $(obj)/,$($(@F:.so=-objs))) \
                                                   >> 159                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
                                                   >> 160 $(host-cshlib): FORCE
                                                   >> 161         $(call if_changed,host-cshlib)
                                                   >> 162 $(call multi_depend, $(host-cshlib), .so, -objs)
                                                   >> 163 
                                                   >> 164 # Link a shared library, based on position independent .o files
                                                   >> 165 # *.o -> .so shared library (host-cxxshlib)
                                                   >> 166 quiet_cmd_host-cxxshlib = HOSTLLD -shared $@
                                                   >> 167       cmd_host-cxxshlib = $(HOSTCXX) $(HOSTLDFLAGS) -shared -o $@ \
                                                   >> 168                           $(addprefix $(obj)/,$($(@F:.so=-objs))) \
                                                   >> 169                           $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
                                                   >> 170 $(host-cxxshlib): FORCE
                                                   >> 171         $(call if_changed,host-cxxshlib)
                                                   >> 172 $(call multi_depend, $(host-cxxshlib), .so, -objs)
160                                                   173 
161 targets += $(host-csingle) $(host-cmulti) $(ho !! 174 targets += $(host-csingle)  $(host-cmulti) $(host-cobjs)\
162            $(host-cxxmulti) $(host-cxxobjs) $( !! 175            $(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