vhost_net: validate sock before trying to put its fd
[linux/fpc-iii.git] / scripts / Kbuild.include
blob63774307a751ffb9d8ba70cf752df9904b5634d0
1 ####
2 # kbuild: Generic definitions
4 # Convenient variables
5 comma   := ,
6 quote   := "
7 squote  := '
8 empty   :=
9 space   := $(empty) $(empty)
10 space_escape := _-_SPACE_-_
11 pound := \#
13 ###
14 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
15 dot-target = $(dir $@).$(notdir $@)
17 ###
18 # The temporary file to save gcc -MD generated dependencies must not
19 # contain a comma
20 depfile = $(subst $(comma),_,$(dot-target).d)
22 ###
23 # filename of target with directory and extension stripped
24 basetarget = $(basename $(notdir $@))
26 ###
27 # filename of first prerequisite with directory and extension stripped
28 baseprereq = $(basename $(notdir $<))
30 ###
31 # Escape single quote for use in echo statements
32 escsq = $(subst $(squote),'\$(squote)',$1)
34 ###
35 # Easy method for doing a status message
36        kecho := :
37  quiet_kecho := echo
38 silent_kecho := :
39 kecho := $($(quiet)kecho)
41 ###
42 # filechk is used to check if the content of a generated file is updated.
43 # Sample usage:
44 # define filechk_sample
45 #       echo $KERNELRELEASE
46 # endef
47 # version.h : Makefile
48 #       $(call filechk,sample)
49 # The rule defined shall write to stdout the content of the new file.
50 # The existing file will be compared with the new one.
51 # - If no file exist it is created
52 # - If the content differ the new file is used
53 # - If they are equal no change, and no timestamp update
54 # - stdin is piped in from the first prerequisite ($<) so one has
55 #   to specify a valid file as first prerequisite (often the kbuild file)
56 define filechk
57         $(Q)set -e;                             \
58         $(kecho) '  CHK     $@';                \
59         mkdir -p $(dir $@);                     \
60         $(filechk_$(1)) < $< > $@.tmp;          \
61         if [ -r $@ ] && cmp -s $@ $@.tmp; then  \
62                 rm -f $@.tmp;                   \
63         else                                    \
64                 $(kecho) '  UPD     $@';        \
65                 mv -f $@.tmp $@;                \
66         fi
67 endef
69 ######
70 # gcc support functions
71 # See documentation in Documentation/kbuild/makefiles.txt
73 # cc-cross-prefix
74 # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-)
75 # Return first prefix where a prefix$(CC) is found in PATH.
76 # If no $(CC) found in PATH with listed prefixes return nothing
77 cc-cross-prefix =  \
78         $(word 1, $(foreach c,$(1),                                   \
79                 $(shell set -e;                                       \
80                 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \
81                         echo $(c);                                    \
82                 fi)))
84 # output directory for tests below
85 TMPOUT := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/)
87 # try-run
88 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
89 # Exit code chooses option. "$$TMP" is can be used as temporary file and
90 # is automatically cleaned up.
91 try-run = $(shell set -e;               \
92         TMP="$(TMPOUT).$$$$.tmp";       \
93         TMPO="$(TMPOUT).$$$$.o";        \
94         if ($(1)) >/dev/null 2>&1;      \
95         then echo "$(2)";               \
96         else echo "$(3)";               \
97         fi;                             \
98         rm -f "$$TMP" "$$TMPO")
100 # as-option
101 # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
103 as-option = $(call try-run,\
104         $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
106 # as-instr
107 # Usage: cflags-y += $(call as-instr,instr,option1,option2)
109 as-instr = $(call try-run,\
110         printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
112 # Do not attempt to build with gcc plugins during cc-option tests.
113 # (And this uses delayed resolution so the flags will be up to date.)
114 CC_OPTION_CFLAGS = $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS))
116 # cc-option
117 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
119 cc-option = $(call try-run,\
120         $(CC) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
122 # cc-option-yn
123 # Usage: flag := $(call cc-option-yn,-march=winchip-c6)
124 cc-option-yn = $(call try-run,\
125         $(CC) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
127 # cc-option-align
128 # Prefix align with either -falign or -malign
129 cc-option-align = $(subst -functions=0,,\
130         $(call cc-option,-falign-functions=0,-malign-functions=0))
132 # cc-disable-warning
133 # Usage: cflags-y += $(call cc-disable-warning,unused-but-set-variable)
134 cc-disable-warning = $(call try-run,\
135         $(CC) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(strip $(1)))
137 # cc-name
138 # Expands to either gcc or clang
139 cc-name = $(shell $(CC) -v 2>&1 | grep -q "clang version" && echo clang || echo gcc)
141 # cc-version
142 cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh $(CC))
144 # cc-fullversion
145 cc-fullversion = $(shell $(CONFIG_SHELL) \
146         $(srctree)/scripts/gcc-version.sh -p $(CC))
148 # cc-ifversion
149 # Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
150 cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3) || echo $(4))
152 # cc-ldoption
153 # Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
154 cc-ldoption = $(call try-run,\
155         $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
157 # ld-option
158 # Usage: LDFLAGS += $(call ld-option, -X)
159 ld-option = $(call try-run,\
160         $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
162 # ar-option
163 # Usage: KBUILD_ARFLAGS := $(call ar-option,D)
164 # Important: no spaces around options
165 ar-option = $(call try-run, $(AR) rc$(1) "$$TMP",$(1),$(2))
167 # ld-version
168 # Note this is mainly for HJ Lu's 3 number binutil versions
169 ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh)
171 # ld-ifversion
172 # Usage:  $(call ld-ifversion, -ge, 22252, y)
173 ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4))
175 ######
178 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
179 # Usage:
180 # $(Q)$(MAKE) $(build)=dir
181 build := -f $(srctree)/scripts/Makefile.build obj
184 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
185 # Usage:
186 # $(Q)$(MAKE) $(modbuiltin)=dir
187 modbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj
190 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.dtbinst obj=
191 # Usage:
192 # $(Q)$(MAKE) $(dtbinst)=dir
193 dtbinst := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.dtbinst obj
196 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=
197 # Usage:
198 # $(Q)$(MAKE) $(clean)=dir
199 clean := -f $(srctree)/scripts/Makefile.clean obj
202 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.headersinst obj=
203 # Usage:
204 # $(Q)$(MAKE) $(hdr-inst)=dir
205 hdr-inst := -f $(srctree)/scripts/Makefile.headersinst obj
207 # Prefix -I with $(srctree) if it is not an absolute path.
208 # skip if -I has no parameter
209 addtree = $(if $(patsubst -I%,%,$(1)), \
210 $(if $(filter-out -I/% -I./% -I../%,$(1)),$(patsubst -I%,-I$(srctree)/%,$(1)),$(1)))
212 # Find all -I options and call addtree
213 flags = $(foreach o,$($(1)),$(if $(filter -I%,$(o)),$(call addtree,$(o)),$(o)))
215 # echo command.
216 # Short version is used, if $(quiet) equals `quiet_', otherwise full one.
217 echo-cmd = $(if $($(quiet)cmd_$(1)),\
218         echo '  $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';)
220 # printing commands
221 cmd = @$(echo-cmd) $(cmd_$(1))
223 # Add $(obj)/ for paths that are not absolute
224 objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o)))
227 # if_changed      - execute command if any prerequisite is newer than
228 #                   target, or command line has changed
229 # if_changed_dep  - as if_changed, but uses fixdep to reveal dependencies
230 #                   including used config symbols
231 # if_changed_rule - as if_changed but execute rule instead
232 # See Documentation/kbuild/makefiles.txt for more info
234 ifneq ($(KBUILD_NOCMDDEP),1)
235 # Check if both arguments are the same including their order. Result is empty
236 # string if equal. User may override this check using make KBUILD_NOCMDDEP=1
237 arg-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
238                          $(subst $(space),$(space_escape),$(strip $(cmd_$1))))
239 else
240 arg-check = $(if $(strip $(cmd_$@)),,1)
241 endif
243 # Replace >$< with >$$< to preserve $ when reloading the .cmd file
244 # (needed for make)
245 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
246 # (needed for make)
247 # Replace >'< with >'\''< to be able to enclose the whole string in '...'
248 # (needed for the shell)
249 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
251 # Find any prerequisites that is newer than target or that does not exist.
252 # PHONY targets skipped in both cases.
253 any-prereq = $(filter-out $(PHONY),$?) $(filter-out $(PHONY) $(wildcard $^),$^)
255 # Execute command if command has changed or prerequisite(s) are updated.
257 if_changed = $(if $(strip $(any-prereq) $(arg-check)),                       \
258         @set -e;                                                             \
259         $(echo-cmd) $(cmd_$(1));                                             \
260         printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
262 # Execute the command and also postprocess generated .d dependencies file.
263 if_changed_dep = $(if $(strip $(any-prereq) $(arg-check) ),                  \
264         @set -e;                                                             \
265         $(cmd_and_fixdep), @:)
267 ifndef CONFIG_TRIM_UNUSED_KSYMS
269 cmd_and_fixdep =                                                             \
270         $(echo-cmd) $(cmd_$(1));                                             \
271         scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\
272         rm -f $(depfile);                                                    \
273         mv -f $(dot-target).tmp $(dot-target).cmd;
275 else
277 # Filter out exported kernel symbol names from the preprocessor output.
278 # See also __KSYM_DEPS__ in include/linux/export.h.
279 # We disable the depfile generation here, so as not to overwrite the existing
280 # depfile while fixdep is parsing it.
281 flags_nodeps = $(filter-out -Wp$(comma)-M%, $($(1)))
282 ksym_dep_filter =                                                            \
283         case "$(1)" in                                                       \
284           cc_*_c|cpp_i_c)                                                    \
285             $(CPP) $(call flags_nodeps,c_flags) -D__KSYM_DEPS__ $< ;;        \
286           as_*_S|cpp_s_S)                                                    \
287             $(CPP) $(call flags_nodeps,a_flags) -D__KSYM_DEPS__ $< ;;        \
288           boot*|build*|*cpp_lds_S|dtc|host*|vdso*) : ;;                      \
289           *) echo "Don't know how to preprocess $(1)" >&2; false ;;          \
290         esac | tr ";" "\n" | sed -rn 's/^.*=== __KSYM_(.*) ===.*$$/KSYM_\1/p'
292 cmd_and_fixdep =                                                             \
293         $(echo-cmd) $(cmd_$(1));                                             \
294         $(ksym_dep_filter) |                                                 \
295                 scripts/basic/fixdep -e $(depfile) $@ '$(make-cmd)'          \
296                         > $(dot-target).tmp;                                 \
297         rm -f $(depfile);                                                    \
298         mv -f $(dot-target).tmp $(dot-target).cmd;
300 endif
302 # Usage: $(call if_changed_rule,foo)
303 # Will check if $(cmd_foo) or any of the prerequisites changed,
304 # and if so will execute $(rule_foo).
305 if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ),                 \
306         @set -e;                                                             \
307         $(rule_$(1)), @:)
310 # why - tell why a a target got build
311 #       enabled by make V=2
312 #       Output (listed in the order they are checked):
313 #          (1) - due to target is PHONY
314 #          (2) - due to target missing
315 #          (3) - due to: file1.h file2.h
316 #          (4) - due to command line change
317 #          (5) - due to missing .cmd file
318 #          (6) - due to target not in $(targets)
319 # (1) PHONY targets are always build
320 # (2) No target, so we better build it
321 # (3) Prerequisite is newer than target
322 # (4) The command line stored in the file named dir/.target.cmd
323 #     differed from actual command line. This happens when compiler
324 #     options changes
325 # (5) No dir/.target.cmd file (used to store command line)
326 # (6) No dir/.target.cmd file and target not listed in $(targets)
327 #     This is a good hint that there is a bug in the kbuild file
328 ifeq ($(KBUILD_VERBOSE),2)
329 why =                                                                        \
330     $(if $(filter $@, $(PHONY)),- due to target is PHONY,                    \
331         $(if $(wildcard $@),                                                 \
332             $(if $(strip $(any-prereq)),- due to: $(any-prereq),             \
333                 $(if $(arg-check),                                           \
334                     $(if $(cmd_$@),- due to command line change,             \
335                         $(if $(filter $@, $(targets)),                       \
336                             - due to missing .cmd file,                      \
337                             - due to $(notdir $@) not in $$(targets)         \
338                          )                                                   \
339                      )                                                       \
340                  )                                                           \
341              ),                                                              \
342              - due to target missing                                         \
343          )                                                                   \
344      )
346 echo-why = $(call escsq, $(strip $(why)))
347 endif
349 ###############################################################################
351 # When a Kconfig string contains a filename, it is suitable for
352 # passing to shell commands. It is surrounded by double-quotes, and
353 # any double-quotes or backslashes within it are escaped by
354 # backslashes.
356 # This is no use for dependencies or $(wildcard). We need to strip the
357 # surrounding quotes and the escaping from quotes and backslashes, and
358 # we *do* need to escape any spaces in the string. So, for example:
360 # Usage: $(eval $(call config_filename,FOO))
362 # Defines FOO_FILENAME based on the contents of the CONFIG_FOO option,
363 # transformed as described above to be suitable for use within the
364 # makefile.
366 # Also, if the filename is a relative filename and exists in the source
367 # tree but not the build tree, define FOO_SRCPREFIX as $(srctree)/ to
368 # be prefixed to *both* command invocation and dependencies.
370 # Note: We also print the filenames in the quiet_cmd_foo text, and
371 # perhaps ought to have a version specially escaped for that purpose.
372 # But it's only cosmetic, and $(patsubst "%",%,$(CONFIG_FOO)) is good
373 # enough.  It'll strip the quotes in the common case where there's no
374 # space and it's a simple filename, and it'll retain the quotes when
375 # there's a space. There are some esoteric cases in which it'll print
376 # the wrong thing, but we don't really care. The actual dependencies
377 # and commands *do* get it right, with various combinations of single
378 # and double quotes, backslashes and spaces in the filenames.
380 ###############################################################################
382 define config_filename
383 ifneq ($$(CONFIG_$(1)),"")
384 $(1)_FILENAME := $$(subst \\,\,$$(subst \$$(quote),$$(quote),$$(subst $$(space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1)))))))
385 ifneq ($$(patsubst /%,%,$$(firstword $$($(1)_FILENAME))),$$(firstword $$($(1)_FILENAME)))
386 else
387 ifeq ($$(wildcard $$($(1)_FILENAME)),)
388 ifneq ($$(wildcard $$(srctree)/$$($(1)_FILENAME)),)
389 $(1)_SRCPREFIX := $(srctree)/
390 endif
391 endif
392 endif
393 endif
394 endef
396 ###############################################################################