]> git.itanic.dy.fi Git - linux-stable/blob - Makefile
Linux 5.15.112
[linux-stable] / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 VERSION = 5
3 PATCHLEVEL = 15
4 SUBLEVEL = 112
5 EXTRAVERSION =
6 NAME = Trick or Treat
7
8 # *DOCUMENTATION*
9 # To see a list of typical targets execute "make help"
10 # More info can be located in ./README
11 # Comments in this file are targeted only to the developer, do not
12 # expect to learn how to build the kernel reading this file.
13
14 $(if $(filter __%, $(MAKECMDGOALS)), \
15         $(error targets prefixed with '__' are only for internal use))
16
17 # That's our default target when none is given on the command line
18 PHONY := __all
19 __all:
20
21 # We are using a recursive build, so we need to do a little thinking
22 # to get the ordering right.
23 #
24 # Most importantly: sub-Makefiles should only ever modify files in
25 # their own directory. If in some directory we have a dependency on
26 # a file in another dir (which doesn't happen often, but it's often
27 # unavoidable when linking the built-in.a targets which finally
28 # turn into vmlinux), we will call a sub make in that other dir, and
29 # after that we are sure that everything which is in that other dir
30 # is now up to date.
31 #
32 # The only cases where we need to modify files which have global
33 # effects are thus separated out and done before the recursive
34 # descending is started. They are now explicitly listed as the
35 # prepare rule.
36
37 ifneq ($(sub_make_done),1)
38
39 # Do not use make's built-in rules and variables
40 # (this increases performance and avoids hard-to-debug behaviour)
41 MAKEFLAGS += -rR
42
43 # Avoid funny character set dependencies
44 unexport LC_ALL
45 LC_COLLATE=C
46 LC_NUMERIC=C
47 export LC_COLLATE LC_NUMERIC
48
49 # Avoid interference with shell env settings
50 unexport GREP_OPTIONS
51
52 # Beautify output
53 # ---------------------------------------------------------------------------
54 #
55 # Normally, we echo the whole command before executing it. By making
56 # that echo $($(quiet)$(cmd)), we now have the possibility to set
57 # $(quiet) to choose other forms of output instead, e.g.
58 #
59 #         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
60 #         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
61 #
62 # If $(quiet) is empty, the whole command will be printed.
63 # If it is set to "quiet_", only the short version will be printed.
64 # If it is set to "silent_", nothing will be printed at all, since
65 # the variable $(silent_cmd_cc_o_c) doesn't exist.
66 #
67 # A simple variant is to prefix commands with $(Q) - that's useful
68 # for commands that shall be hidden in non-verbose mode.
69 #
70 #       $(Q)ln $@ :<
71 #
72 # If KBUILD_VERBOSE equals 0 then the above command will be hidden.
73 # If KBUILD_VERBOSE equals 1 then the above command is displayed.
74 # If KBUILD_VERBOSE equals 2 then give the reason why each target is rebuilt.
75 #
76 # To put more focus on warnings, be less verbose as default
77 # Use 'make V=1' to see the full commands
78
79 ifeq ("$(origin V)", "command line")
80   KBUILD_VERBOSE = $(V)
81 endif
82 ifndef KBUILD_VERBOSE
83   KBUILD_VERBOSE = 0
84 endif
85
86 ifeq ($(KBUILD_VERBOSE),1)
87   quiet =
88   Q =
89 else
90   quiet=quiet_
91   Q = @
92 endif
93
94 # If the user is running make -s (silent mode), suppress echoing of
95 # commands
96 # make-4.0 (and later) keep single letter options in the 1st word of MAKEFLAGS.
97
98 ifeq ($(filter 3.%,$(MAKE_VERSION)),)
99 silence:=$(findstring s,$(firstword -$(MAKEFLAGS)))
100 else
101 silence:=$(findstring s,$(filter-out --%,$(MAKEFLAGS)))
102 endif
103
104 ifeq ($(silence),s)
105 quiet=silent_
106 KBUILD_VERBOSE = 0
107 endif
108
109 export quiet Q KBUILD_VERBOSE
110
111 # Call a source code checker (by default, "sparse") as part of the
112 # C compilation.
113 #
114 # Use 'make C=1' to enable checking of only re-compiled files.
115 # Use 'make C=2' to enable checking of *all* source files, regardless
116 # of whether they are re-compiled or not.
117 #
118 # See the file "Documentation/dev-tools/sparse.rst" for more details,
119 # including where to get the "sparse" utility.
120
121 ifeq ("$(origin C)", "command line")
122   KBUILD_CHECKSRC = $(C)
123 endif
124 ifndef KBUILD_CHECKSRC
125   KBUILD_CHECKSRC = 0
126 endif
127
128 export KBUILD_CHECKSRC
129
130 # Use make M=dir or set the environment variable KBUILD_EXTMOD to specify the
131 # directory of external module to build. Setting M= takes precedence.
132 ifeq ("$(origin M)", "command line")
133   KBUILD_EXTMOD := $(M)
134 endif
135
136 $(if $(word 2, $(KBUILD_EXTMOD)), \
137         $(error building multiple external modules is not supported))
138
139 # Remove trailing slashes
140 ifneq ($(filter %/, $(KBUILD_EXTMOD)),)
141 KBUILD_EXTMOD := $(shell dirname $(KBUILD_EXTMOD).)
142 endif
143
144 export KBUILD_EXTMOD
145
146 # Kbuild will save output files in the current working directory.
147 # This does not need to match to the root of the kernel source tree.
148 #
149 # For example, you can do this:
150 #
151 #  cd /dir/to/store/output/files; make -f /dir/to/kernel/source/Makefile
152 #
153 # If you want to save output files in a different location, there are
154 # two syntaxes to specify it.
155 #
156 # 1) O=
157 # Use "make O=dir/to/store/output/files/"
158 #
159 # 2) Set KBUILD_OUTPUT
160 # Set the environment variable KBUILD_OUTPUT to point to the output directory.
161 # export KBUILD_OUTPUT=dir/to/store/output/files/; make
162 #
163 # The O= assignment takes precedence over the KBUILD_OUTPUT environment
164 # variable.
165
166 # Do we want to change the working directory?
167 ifeq ("$(origin O)", "command line")
168   KBUILD_OUTPUT := $(O)
169 endif
170
171 ifneq ($(KBUILD_OUTPUT),)
172 # Make's built-in functions such as $(abspath ...), $(realpath ...) cannot
173 # expand a shell special character '~'. We use a somewhat tedious way here.
174 abs_objtree := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) && pwd)
175 $(if $(abs_objtree),, \
176      $(error failed to create output directory "$(KBUILD_OUTPUT)"))
177
178 # $(realpath ...) resolves symlinks
179 abs_objtree := $(realpath $(abs_objtree))
180 else
181 abs_objtree := $(CURDIR)
182 endif # ifneq ($(KBUILD_OUTPUT),)
183
184 ifeq ($(abs_objtree),$(CURDIR))
185 # Suppress "Entering directory ..." unless we are changing the work directory.
186 MAKEFLAGS += --no-print-directory
187 else
188 need-sub-make := 1
189 endif
190
191 this-makefile := $(lastword $(MAKEFILE_LIST))
192 abs_srctree := $(realpath $(dir $(this-makefile)))
193
194 ifneq ($(words $(subst :, ,$(abs_srctree))), 1)
195 $(error source directory cannot contain spaces or colons)
196 endif
197
198 ifneq ($(abs_srctree),$(abs_objtree))
199 # Look for make include files relative to root of kernel src
200 #
201 # --included-dir is added for backward compatibility, but you should not rely on
202 # it. Please add $(srctree)/ prefix to include Makefiles in the source tree.
203 MAKEFLAGS += --include-dir=$(abs_srctree)
204 endif
205
206 ifneq ($(filter 3.%,$(MAKE_VERSION)),)
207 # 'MAKEFLAGS += -rR' does not immediately become effective for GNU Make 3.x
208 # We need to invoke sub-make to avoid implicit rules in the top Makefile.
209 need-sub-make := 1
210 # Cancel implicit rules for this Makefile.
211 $(this-makefile): ;
212 endif
213
214 export abs_srctree abs_objtree
215 export sub_make_done := 1
216
217 ifeq ($(need-sub-make),1)
218
219 PHONY += $(MAKECMDGOALS) __sub-make
220
221 $(filter-out $(this-makefile), $(MAKECMDGOALS)) __all: __sub-make
222         @:
223
224 # Invoke a second make in the output directory, passing relevant variables
225 __sub-make:
226         $(Q)$(MAKE) -C $(abs_objtree) -f $(abs_srctree)/Makefile $(MAKECMDGOALS)
227
228 endif # need-sub-make
229 endif # sub_make_done
230
231 # We process the rest of the Makefile if this is the final invocation of make
232 ifeq ($(need-sub-make),)
233
234 # Do not print "Entering directory ...",
235 # but we want to display it when entering to the output directory
236 # so that IDEs/editors are able to understand relative filenames.
237 MAKEFLAGS += --no-print-directory
238
239 ifeq ($(abs_srctree),$(abs_objtree))
240         # building in the source tree
241         srctree := .
242         building_out_of_srctree :=
243 else
244         ifeq ($(abs_srctree)/,$(dir $(abs_objtree)))
245                 # building in a subdirectory of the source tree
246                 srctree := ..
247         else
248                 srctree := $(abs_srctree)
249         endif
250         building_out_of_srctree := 1
251 endif
252
253 ifneq ($(KBUILD_ABS_SRCTREE),)
254 srctree := $(abs_srctree)
255 endif
256
257 objtree         := .
258 VPATH           := $(srctree)
259
260 export building_out_of_srctree srctree objtree VPATH
261
262 # To make sure we do not include .config for any of the *config targets
263 # catch them early, and hand them over to scripts/kconfig/Makefile
264 # It is allowed to specify more targets when calling make, including
265 # mixing *config targets and build targets.
266 # For example 'make oldconfig all'.
267 # Detect when mixed targets is specified, and make a second invocation
268 # of make so .config is not included in this case either (for *config).
269
270 version_h := include/generated/uapi/linux/version.h
271
272 clean-targets := %clean mrproper cleandocs
273 no-dot-config-targets := $(clean-targets) \
274                          cscope gtags TAGS tags help% %docs check% coccicheck \
275                          $(version_h) headers headers_% archheaders archscripts \
276                          %asm-generic kernelversion %src-pkg dt_binding_check \
277                          outputmakefile
278 # Installation targets should not require compiler. Unfortunately, vdso_install
279 # is an exception where build artifacts may be updated. This must be fixed.
280 no-compiler-targets := $(no-dot-config-targets) install dtbs_install \
281                         headers_install modules_install kernelrelease image_name
282 no-sync-config-targets := $(no-dot-config-targets) %install kernelrelease \
283                           image_name
284 single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.s %.symtypes %/
285
286 config-build    :=
287 mixed-build     :=
288 need-config     := 1
289 need-compiler   := 1
290 may-sync-config := 1
291 single-build    :=
292
293 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
294         ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
295                 need-config :=
296         endif
297 endif
298
299 ifneq ($(filter $(no-compiler-targets), $(MAKECMDGOALS)),)
300         ifeq ($(filter-out $(no-compiler-targets), $(MAKECMDGOALS)),)
301                 need-compiler :=
302         endif
303 endif
304
305 ifneq ($(filter $(no-sync-config-targets), $(MAKECMDGOALS)),)
306         ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
307                 may-sync-config :=
308         endif
309 endif
310
311 ifneq ($(KBUILD_EXTMOD),)
312         may-sync-config :=
313 endif
314
315 ifeq ($(KBUILD_EXTMOD),)
316         ifneq ($(filter %config,$(MAKECMDGOALS)),)
317                 config-build := 1
318                 ifneq ($(words $(MAKECMDGOALS)),1)
319                         mixed-build := 1
320                 endif
321         endif
322 endif
323
324 # We cannot build single targets and the others at the same time
325 ifneq ($(filter $(single-targets), $(MAKECMDGOALS)),)
326         single-build := 1
327         ifneq ($(filter-out $(single-targets), $(MAKECMDGOALS)),)
328                 mixed-build := 1
329         endif
330 endif
331
332 # For "make -j clean all", "make -j mrproper defconfig all", etc.
333 ifneq ($(filter $(clean-targets),$(MAKECMDGOALS)),)
334         ifneq ($(filter-out $(clean-targets),$(MAKECMDGOALS)),)
335                 mixed-build := 1
336         endif
337 endif
338
339 # install and modules_install need also be processed one by one
340 ifneq ($(filter install,$(MAKECMDGOALS)),)
341         ifneq ($(filter modules_install,$(MAKECMDGOALS)),)
342                 mixed-build := 1
343         endif
344 endif
345
346 ifdef mixed-build
347 # ===========================================================================
348 # We're called with mixed targets (*config and build targets).
349 # Handle them one by one.
350
351 PHONY += $(MAKECMDGOALS) __build_one_by_one
352
353 $(MAKECMDGOALS): __build_one_by_one
354         @:
355
356 __build_one_by_one:
357         $(Q)set -e; \
358         for i in $(MAKECMDGOALS); do \
359                 $(MAKE) -f $(srctree)/Makefile $$i; \
360         done
361
362 else # !mixed-build
363
364 include $(srctree)/scripts/Kbuild.include
365
366 # Read KERNELRELEASE from include/config/kernel.release (if it exists)
367 KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
368 KERNELVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
369 export VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
370
371 include $(srctree)/scripts/subarch.include
372
373 # Cross compiling and selecting different set of gcc/bin-utils
374 # ---------------------------------------------------------------------------
375 #
376 # When performing cross compilation for other architectures ARCH shall be set
377 # to the target architecture. (See arch/* for the possibilities).
378 # ARCH can be set during invocation of make:
379 # make ARCH=ia64
380 # Another way is to have ARCH set in the environment.
381 # The default ARCH is the host where make is executed.
382
383 # CROSS_COMPILE specify the prefix used for all executables used
384 # during compilation. Only gcc and related bin-utils executables
385 # are prefixed with $(CROSS_COMPILE).
386 # CROSS_COMPILE can be set on the command line
387 # make CROSS_COMPILE=ia64-linux-
388 # Alternatively CROSS_COMPILE can be set in the environment.
389 # Default value for CROSS_COMPILE is not to prefix executables
390 # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
391 ARCH            ?= $(SUBARCH)
392
393 # Architecture as present in compile.h
394 UTS_MACHINE     := $(ARCH)
395 SRCARCH         := $(ARCH)
396
397 # Additional ARCH settings for x86
398 ifeq ($(ARCH),i386)
399         SRCARCH := x86
400 endif
401 ifeq ($(ARCH),x86_64)
402         SRCARCH := x86
403 endif
404
405 # Additional ARCH settings for sparc
406 ifeq ($(ARCH),sparc32)
407        SRCARCH := sparc
408 endif
409 ifeq ($(ARCH),sparc64)
410        SRCARCH := sparc
411 endif
412
413 # Additional ARCH settings for parisc
414 ifeq ($(ARCH),parisc64)
415        SRCARCH := parisc
416 endif
417
418 export cross_compiling :=
419 ifneq ($(SRCARCH),$(SUBARCH))
420 cross_compiling := 1
421 endif
422
423 KCONFIG_CONFIG  ?= .config
424 export KCONFIG_CONFIG
425
426 # SHELL used by kbuild
427 CONFIG_SHELL := sh
428
429 HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null)
430 HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null)
431 HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null)
432
433 ifneq ($(LLVM),)
434 HOSTCC  = clang
435 HOSTCXX = clang++
436 else
437 HOSTCC  = gcc
438 HOSTCXX = g++
439 endif
440 HOSTPKG_CONFIG  = pkg-config
441
442 export KBUILD_USERCFLAGS := -Wall -Wmissing-prototypes -Wstrict-prototypes \
443                               -O2 -fomit-frame-pointer -std=gnu89
444 export KBUILD_USERLDFLAGS :=
445
446 KBUILD_HOSTCFLAGS   := $(KBUILD_USERCFLAGS) $(HOST_LFS_CFLAGS) $(HOSTCFLAGS)
447 KBUILD_HOSTCXXFLAGS := -Wall -O2 $(HOST_LFS_CFLAGS) $(HOSTCXXFLAGS)
448 KBUILD_HOSTLDFLAGS  := $(HOST_LFS_LDFLAGS) $(HOSTLDFLAGS)
449 KBUILD_HOSTLDLIBS   := $(HOST_LFS_LIBS) $(HOSTLDLIBS)
450
451 # Make variables (CC, etc...)
452 CPP             = $(CC) -E
453 ifneq ($(LLVM),)
454 CC              = clang
455 LD              = ld.lld
456 AR              = llvm-ar
457 NM              = llvm-nm
458 OBJCOPY         = llvm-objcopy
459 OBJDUMP         = llvm-objdump
460 READELF         = llvm-readelf
461 STRIP           = llvm-strip
462 else
463 CC              = $(CROSS_COMPILE)gcc
464 LD              = $(CROSS_COMPILE)ld
465 AR              = $(CROSS_COMPILE)ar
466 NM              = $(CROSS_COMPILE)nm
467 OBJCOPY         = $(CROSS_COMPILE)objcopy
468 OBJDUMP         = $(CROSS_COMPILE)objdump
469 READELF         = $(CROSS_COMPILE)readelf
470 STRIP           = $(CROSS_COMPILE)strip
471 endif
472 PAHOLE          = pahole
473 RESOLVE_BTFIDS  = $(objtree)/tools/bpf/resolve_btfids/resolve_btfids
474 LEX             = flex
475 YACC            = bison
476 AWK             = awk
477 INSTALLKERNEL  := installkernel
478 DEPMOD          = depmod
479 PERL            = perl
480 PYTHON3         = python3
481 CHECK           = sparse
482 BASH            = bash
483 KGZIP           = gzip
484 KBZIP2          = bzip2
485 KLZOP           = lzop
486 LZMA            = lzma
487 LZ4             = lz4c
488 XZ              = xz
489 ZSTD            = zstd
490
491 PAHOLE_FLAGS    = $(shell PAHOLE=$(PAHOLE) $(srctree)/scripts/pahole-flags.sh)
492
493 CHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
494                   -Wbitwise -Wno-return-void -Wno-unknown-attribute $(CF)
495 NOSTDINC_FLAGS :=
496 CFLAGS_MODULE   =
497 AFLAGS_MODULE   =
498 LDFLAGS_MODULE  =
499 CFLAGS_KERNEL   =
500 AFLAGS_KERNEL   =
501 LDFLAGS_vmlinux =
502
503 # Use USERINCLUDE when you must reference the UAPI directories only.
504 USERINCLUDE    := \
505                 -I$(srctree)/arch/$(SRCARCH)/include/uapi \
506                 -I$(objtree)/arch/$(SRCARCH)/include/generated/uapi \
507                 -I$(srctree)/include/uapi \
508                 -I$(objtree)/include/generated/uapi \
509                 -include $(srctree)/include/linux/compiler-version.h \
510                 -include $(srctree)/include/linux/kconfig.h
511
512 # Use LINUXINCLUDE when you must reference the include/ directory.
513 # Needed to be compatible with the O= option
514 LINUXINCLUDE    := \
515                 -I$(srctree)/arch/$(SRCARCH)/include \
516                 -I$(objtree)/arch/$(SRCARCH)/include/generated \
517                 $(if $(building_out_of_srctree),-I$(srctree)/include) \
518                 -I$(objtree)/include \
519                 $(USERINCLUDE)
520
521 KBUILD_AFLAGS   := -D__ASSEMBLY__ -fno-PIE
522 KBUILD_CFLAGS   := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
523                    -fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \
524                    -Werror=implicit-function-declaration -Werror=implicit-int \
525                    -Werror=return-type -Wno-format-security \
526                    -std=gnu89
527 KBUILD_CPPFLAGS := -D__KERNEL__
528 KBUILD_AFLAGS_KERNEL :=
529 KBUILD_CFLAGS_KERNEL :=
530 KBUILD_AFLAGS_MODULE  := -DMODULE
531 KBUILD_CFLAGS_MODULE  := -DMODULE
532 KBUILD_LDFLAGS_MODULE :=
533 KBUILD_LDFLAGS :=
534 CLANG_FLAGS :=
535
536 export ARCH SRCARCH CONFIG_SHELL BASH HOSTCC KBUILD_HOSTCFLAGS CROSS_COMPILE LD CC HOSTPKG_CONFIG
537 export CPP AR NM STRIP OBJCOPY OBJDUMP READELF PAHOLE RESOLVE_BTFIDS LEX YACC AWK INSTALLKERNEL
538 export PERL PYTHON3 CHECK CHECKFLAGS MAKE UTS_MACHINE HOSTCXX
539 export KGZIP KBZIP2 KLZOP LZMA LZ4 XZ ZSTD
540 export KBUILD_HOSTCXXFLAGS KBUILD_HOSTLDFLAGS KBUILD_HOSTLDLIBS LDFLAGS_MODULE
541
542 export KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS KBUILD_LDFLAGS
543 export KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE
544 export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
545 export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
546 export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
547 export PAHOLE_FLAGS
548
549 # Files to ignore in find ... statements
550
551 export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o    \
552                           -name CVS -o -name .pc -o -name .hg -o -name .git \) \
553                           -prune -o
554 export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
555                          --exclude CVS --exclude .pc --exclude .hg --exclude .git
556
557 # ===========================================================================
558 # Rules shared between *config targets and build targets
559
560 # Basic helpers built in scripts/basic/
561 PHONY += scripts_basic
562 scripts_basic:
563         $(Q)$(MAKE) $(build)=scripts/basic
564
565 PHONY += outputmakefile
566 ifdef building_out_of_srctree
567 # Before starting out-of-tree build, make sure the source tree is clean.
568 # outputmakefile generates a Makefile in the output directory, if using a
569 # separate output directory. This allows convenient use of make in the
570 # output directory.
571 # At the same time when output Makefile generated, generate .gitignore to
572 # ignore whole output directory
573
574 quiet_cmd_makefile = GEN     Makefile
575       cmd_makefile = { \
576         echo "\# Automatically generated by $(srctree)/Makefile: don't edit"; \
577         echo "include $(srctree)/Makefile"; \
578         } > Makefile
579
580 outputmakefile:
581         $(Q)if [ -f $(srctree)/.config -o \
582                  -d $(srctree)/include/config -o \
583                  -d $(srctree)/arch/$(SRCARCH)/include/generated ]; then \
584                 echo >&2 "***"; \
585                 echo >&2 "*** The source tree is not clean, please run 'make$(if $(findstring command line, $(origin ARCH)), ARCH=$(ARCH)) mrproper'"; \
586                 echo >&2 "*** in $(abs_srctree)";\
587                 echo >&2 "***"; \
588                 false; \
589         fi
590         $(Q)ln -fsn $(srctree) source
591         $(call cmd,makefile)
592         $(Q)test -e .gitignore || \
593         { echo "# this is build directory, ignore it"; echo "*"; } > .gitignore
594 endif
595
596 # The expansion should be delayed until arch/$(SRCARCH)/Makefile is included.
597 # Some architectures define CROSS_COMPILE in arch/$(SRCARCH)/Makefile.
598 # CC_VERSION_TEXT is referenced from Kconfig (so it needs export),
599 # and from include/config/auto.conf.cmd to detect the compiler upgrade.
600 CC_VERSION_TEXT = $(subst $(pound),,$(shell LC_ALL=C $(CC) --version 2>/dev/null | head -n 1))
601
602 ifneq ($(findstring clang,$(CC_VERSION_TEXT)),)
603 include $(srctree)/scripts/Makefile.clang
604 endif
605
606 # Include this also for config targets because some architectures need
607 # cc-cross-prefix to determine CROSS_COMPILE.
608 ifdef need-compiler
609 include $(srctree)/scripts/Makefile.compiler
610 endif
611
612 ifdef config-build
613 # ===========================================================================
614 # *config targets only - make sure prerequisites are updated, and descend
615 # in scripts/kconfig to make the *config target
616
617 # Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
618 # KBUILD_DEFCONFIG may point out an alternative default configuration
619 # used for 'make defconfig'
620 include $(srctree)/arch/$(SRCARCH)/Makefile
621 export KBUILD_DEFCONFIG KBUILD_KCONFIG CC_VERSION_TEXT
622
623 config: outputmakefile scripts_basic FORCE
624         $(Q)$(MAKE) $(build)=scripts/kconfig $@
625
626 %config: outputmakefile scripts_basic FORCE
627         $(Q)$(MAKE) $(build)=scripts/kconfig $@
628
629 else #!config-build
630 # ===========================================================================
631 # Build targets only - this includes vmlinux, arch specific targets, clean
632 # targets and others. In general all targets except *config targets.
633
634 # If building an external module we do not care about the all: rule
635 # but instead __all depend on modules
636 PHONY += all
637 ifeq ($(KBUILD_EXTMOD),)
638 __all: all
639 else
640 __all: modules
641 endif
642
643 # Decide whether to build built-in, modular, or both.
644 # Normally, just do built-in.
645
646 KBUILD_MODULES :=
647 KBUILD_BUILTIN := 1
648
649 # If we have only "make modules", don't compile built-in objects.
650 ifeq ($(MAKECMDGOALS),modules)
651   KBUILD_BUILTIN :=
652 endif
653
654 # If we have "make <whatever> modules", compile modules
655 # in addition to whatever we do anyway.
656 # Just "make" or "make all" shall build modules as well
657
658 ifneq ($(filter all modules nsdeps %compile_commands.json clang-%,$(MAKECMDGOALS)),)
659   KBUILD_MODULES := 1
660 endif
661
662 ifeq ($(MAKECMDGOALS),)
663   KBUILD_MODULES := 1
664 endif
665
666 export KBUILD_MODULES KBUILD_BUILTIN
667
668 ifdef need-config
669 include include/config/auto.conf
670 endif
671
672 ifeq ($(KBUILD_EXTMOD),)
673 # Objects we will link into vmlinux / subdirs we need to visit
674 core-y          := init/ usr/ arch/$(SRCARCH)/
675 drivers-y       := drivers/ sound/
676 drivers-$(CONFIG_SAMPLES) += samples/
677 drivers-$(CONFIG_NET) += net/
678 drivers-y       += virt/
679 libs-y          := lib/
680 endif # KBUILD_EXTMOD
681
682 # The all: target is the default when no target is given on the
683 # command line.
684 # This allow a user to issue only 'make' to build a kernel including modules
685 # Defaults to vmlinux, but the arch makefile usually adds further targets
686 all: vmlinux
687
688 CFLAGS_GCOV     := -fprofile-arcs -ftest-coverage
689 ifdef CONFIG_CC_IS_GCC
690 CFLAGS_GCOV     += -fno-tree-loop-im
691 endif
692 export CFLAGS_GCOV
693
694 # The arch Makefiles can override CC_FLAGS_FTRACE. We may also append it later.
695 ifdef CONFIG_FUNCTION_TRACER
696   CC_FLAGS_FTRACE := -pg
697 endif
698
699 ifdef CONFIG_CC_IS_GCC
700 RETPOLINE_CFLAGS        := $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
701 RETPOLINE_CFLAGS        += $(call cc-option,-mindirect-branch-cs-prefix)
702 RETPOLINE_VDSO_CFLAGS   := $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
703 endif
704 ifdef CONFIG_CC_IS_CLANG
705 RETPOLINE_CFLAGS        := -mretpoline-external-thunk
706 RETPOLINE_VDSO_CFLAGS   := -mretpoline
707 endif
708
709 ifdef CONFIG_RETHUNK
710 RETHUNK_CFLAGS         := -mfunction-return=thunk-extern
711 RETPOLINE_CFLAGS       += $(RETHUNK_CFLAGS)
712 endif
713
714 export RETPOLINE_CFLAGS
715 export RETPOLINE_VDSO_CFLAGS
716
717 include $(srctree)/arch/$(SRCARCH)/Makefile
718
719 ifdef need-config
720 ifdef may-sync-config
721 # Read in dependencies to all Kconfig* files, make sure to run syncconfig if
722 # changes are detected. This should be included after arch/$(SRCARCH)/Makefile
723 # because some architectures define CROSS_COMPILE there.
724 include include/config/auto.conf.cmd
725
726 $(KCONFIG_CONFIG):
727         @echo >&2 '***'
728         @echo >&2 '*** Configuration file "$@" not found!'
729         @echo >&2 '***'
730         @echo >&2 '*** Please run some configurator (e.g. "make oldconfig" or'
731         @echo >&2 '*** "make menuconfig" or "make xconfig").'
732         @echo >&2 '***'
733         @/bin/false
734
735 # The actual configuration files used during the build are stored in
736 # include/generated/ and include/config/. Update them if .config is newer than
737 # include/config/auto.conf (which mirrors .config).
738 #
739 # This exploits the 'multi-target pattern rule' trick.
740 # The syncconfig should be executed only once to make all the targets.
741 # (Note: use the grouped target '&:' when we bump to GNU Make 4.3)
742 #
743 # Do not use $(call cmd,...) here. That would suppress prompts from syncconfig,
744 # so you cannot notice that Kconfig is waiting for the user input.
745 %/config/auto.conf %/config/auto.conf.cmd %/generated/autoconf.h: $(KCONFIG_CONFIG)
746         $(Q)$(kecho) "  SYNC    $@"
747         $(Q)$(MAKE) -f $(srctree)/Makefile syncconfig
748 else # !may-sync-config
749 # External modules and some install targets need include/generated/autoconf.h
750 # and include/config/auto.conf but do not care if they are up-to-date.
751 # Use auto.conf to trigger the test
752 PHONY += include/config/auto.conf
753
754 include/config/auto.conf:
755         $(Q)test -e include/generated/autoconf.h -a -e $@ || (          \
756         echo >&2;                                                       \
757         echo >&2 "  ERROR: Kernel configuration is invalid.";           \
758         echo >&2 "         include/generated/autoconf.h or $@ are missing.";\
759         echo >&2 "         Run 'make oldconfig && make prepare' on kernel src to fix it.";      \
760         echo >&2 ;                                                      \
761         /bin/false)
762
763 endif # may-sync-config
764 endif # need-config
765
766 KBUILD_CFLAGS   += -fno-delete-null-pointer-checks
767 KBUILD_CFLAGS   += $(call cc-disable-warning,frame-address,)
768 KBUILD_CFLAGS   += $(call cc-disable-warning, format-truncation)
769 KBUILD_CFLAGS   += $(call cc-disable-warning, format-overflow)
770 KBUILD_CFLAGS   += $(call cc-disable-warning, address-of-packed-member)
771
772 ifdef CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE
773 KBUILD_CFLAGS += -O2
774 else ifdef CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE_O3
775 KBUILD_CFLAGS += -O3
776 else ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
777 KBUILD_CFLAGS += -Os
778 endif
779
780 # Tell gcc to never replace conditional load with a non-conditional one
781 ifdef CONFIG_CC_IS_GCC
782 # gcc-10 renamed --param=allow-store-data-races=0 to
783 # -fno-allow-store-data-races.
784 KBUILD_CFLAGS   += $(call cc-option,--param=allow-store-data-races=0)
785 KBUILD_CFLAGS   += $(call cc-option,-fno-allow-store-data-races)
786 endif
787
788 ifdef CONFIG_READABLE_ASM
789 # Disable optimizations that make assembler listings hard to read.
790 # reorder blocks reorders the control in the function
791 # ipa clone creates specialized cloned functions
792 # partial inlining inlines only parts of functions
793 KBUILD_CFLAGS += -fno-reorder-blocks -fno-ipa-cp-clone -fno-partial-inlining
794 endif
795
796 ifneq ($(CONFIG_FRAME_WARN),0)
797 KBUILD_CFLAGS += -Wframe-larger-than=$(CONFIG_FRAME_WARN)
798 endif
799
800 stackp-flags-y                                    := -fno-stack-protector
801 stackp-flags-$(CONFIG_STACKPROTECTOR)             := -fstack-protector
802 stackp-flags-$(CONFIG_STACKPROTECTOR_STRONG)      := -fstack-protector-strong
803
804 KBUILD_CFLAGS += $(stackp-flags-y)
805
806 KBUILD_CFLAGS-$(CONFIG_WERROR) += -Werror
807 KBUILD_CFLAGS += $(KBUILD_CFLAGS-y)
808
809 ifdef CONFIG_CC_IS_CLANG
810 KBUILD_CPPFLAGS += -Qunused-arguments
811 # The kernel builds with '-std=gnu89' so use of GNU extensions is acceptable.
812 KBUILD_CFLAGS += -Wno-gnu
813 # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
814 # source of a reference will be _MergedGlobals and not on of the whitelisted names.
815 # See modpost pattern 2
816 KBUILD_CFLAGS += -mno-global-merge
817 else
818
819 # Warn about unmarked fall-throughs in switch statement.
820 # Disabled for clang while comment to attribute conversion happens and
821 # https://github.com/ClangBuiltLinux/linux/issues/636 is discussed.
822 KBUILD_CFLAGS += $(call cc-option,-Wimplicit-fallthrough=5,)
823 # gcc inanely warns about local variables called 'main'
824 KBUILD_CFLAGS += -Wno-main
825 endif
826
827 # These warnings generated too much noise in a regular build.
828 # Use make W=1 to enable them (see scripts/Makefile.extrawarn)
829 KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
830 KBUILD_CFLAGS += $(call cc-disable-warning, unused-const-variable)
831
832 # These result in bogus false positives
833 KBUILD_CFLAGS += $(call cc-disable-warning, dangling-pointer)
834
835 ifdef CONFIG_FRAME_POINTER
836 KBUILD_CFLAGS   += -fno-omit-frame-pointer -fno-optimize-sibling-calls
837 else
838 # Some targets (ARM with Thumb2, for example), can't be built with frame
839 # pointers.  For those, we don't have FUNCTION_TRACER automatically
840 # select FRAME_POINTER.  However, FUNCTION_TRACER adds -pg, and this is
841 # incompatible with -fomit-frame-pointer with current GCC, so we don't use
842 # -fomit-frame-pointer with FUNCTION_TRACER.
843 ifndef CONFIG_FUNCTION_TRACER
844 KBUILD_CFLAGS   += -fomit-frame-pointer
845 endif
846 endif
847
848 # Initialize all stack variables with a 0xAA pattern.
849 ifdef CONFIG_INIT_STACK_ALL_PATTERN
850 KBUILD_CFLAGS   += -ftrivial-auto-var-init=pattern
851 endif
852
853 # Initialize all stack variables with a zero value.
854 ifdef CONFIG_INIT_STACK_ALL_ZERO
855 KBUILD_CFLAGS   += -ftrivial-auto-var-init=zero
856 ifdef CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER
857 # https://github.com/llvm/llvm-project/issues/44842
858 KBUILD_CFLAGS   += -enable-trivial-auto-var-init-zero-knowing-it-will-be-removed-from-clang
859 endif
860 endif
861
862 # While VLAs have been removed, GCC produces unreachable stack probes
863 # for the randomize_kstack_offset feature. Disable it for all compilers.
864 KBUILD_CFLAGS   += $(call cc-option, -fno-stack-clash-protection)
865
866 # Clear used registers at func exit (to reduce data lifetime and ROP gadgets).
867 ifdef CONFIG_ZERO_CALL_USED_REGS
868 KBUILD_CFLAGS   += -fzero-call-used-regs=used-gpr
869 endif
870
871 DEBUG_CFLAGS    :=
872
873 ifdef CONFIG_DEBUG_INFO
874
875 ifdef CONFIG_DEBUG_INFO_SPLIT
876 DEBUG_CFLAGS    += -gsplit-dwarf
877 else
878 DEBUG_CFLAGS    += -g
879 endif
880
881 ifdef CONFIG_AS_IS_LLVM
882 KBUILD_AFLAGS   += -g
883 else
884 KBUILD_AFLAGS   += -Wa,-gdwarf-2
885 endif
886
887 ifndef CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT
888 dwarf-version-$(CONFIG_DEBUG_INFO_DWARF4) := 4
889 dwarf-version-$(CONFIG_DEBUG_INFO_DWARF5) := 5
890 DEBUG_CFLAGS    += -gdwarf-$(dwarf-version-y)
891 KBUILD_AFLAGS   += -gdwarf-$(dwarf-version-y)
892 endif
893
894 ifdef CONFIG_DEBUG_INFO_REDUCED
895 DEBUG_CFLAGS    += -fno-var-tracking
896 ifdef CONFIG_CC_IS_GCC
897 DEBUG_CFLAGS    += -femit-struct-debug-baseonly
898 endif
899 endif
900
901 ifdef CONFIG_DEBUG_INFO_COMPRESSED
902 DEBUG_CFLAGS    += -gz=zlib
903 KBUILD_AFLAGS   += -gz=zlib
904 KBUILD_LDFLAGS  += --compress-debug-sections=zlib
905 endif
906
907 endif # CONFIG_DEBUG_INFO
908
909 KBUILD_CFLAGS += $(DEBUG_CFLAGS)
910 export DEBUG_CFLAGS
911
912 ifdef CONFIG_FUNCTION_TRACER
913 ifdef CONFIG_FTRACE_MCOUNT_USE_CC
914   CC_FLAGS_FTRACE       += -mrecord-mcount
915   ifdef CONFIG_HAVE_NOP_MCOUNT
916     ifeq ($(call cc-option-yn, -mnop-mcount),y)
917       CC_FLAGS_FTRACE   += -mnop-mcount
918       CC_FLAGS_USING    += -DCC_USING_NOP_MCOUNT
919     endif
920   endif
921 endif
922 ifdef CONFIG_FTRACE_MCOUNT_USE_OBJTOOL
923   CC_FLAGS_USING        += -DCC_USING_NOP_MCOUNT
924 endif
925 ifdef CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT
926   ifdef CONFIG_HAVE_C_RECORDMCOUNT
927     BUILD_C_RECORDMCOUNT := y
928     export BUILD_C_RECORDMCOUNT
929   endif
930 endif
931 ifdef CONFIG_HAVE_FENTRY
932   # s390-linux-gnu-gcc did not support -mfentry until gcc-9.
933   ifeq ($(call cc-option-yn, -mfentry),y)
934     CC_FLAGS_FTRACE     += -mfentry
935     CC_FLAGS_USING      += -DCC_USING_FENTRY
936   endif
937 endif
938 export CC_FLAGS_FTRACE
939 KBUILD_CFLAGS   += $(CC_FLAGS_FTRACE) $(CC_FLAGS_USING)
940 KBUILD_AFLAGS   += $(CC_FLAGS_USING)
941 endif
942
943 # We trigger additional mismatches with less inlining
944 ifdef CONFIG_DEBUG_SECTION_MISMATCH
945 KBUILD_CFLAGS += -fno-inline-functions-called-once
946 endif
947
948 ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
949 KBUILD_CFLAGS_KERNEL += -ffunction-sections -fdata-sections
950 LDFLAGS_vmlinux += --gc-sections
951 endif
952
953 ifdef CONFIG_SHADOW_CALL_STACK
954 CC_FLAGS_SCS    := -fsanitize=shadow-call-stack
955 KBUILD_CFLAGS   += $(CC_FLAGS_SCS)
956 export CC_FLAGS_SCS
957 endif
958
959 ifdef CONFIG_LTO_CLANG
960 ifdef CONFIG_LTO_CLANG_THIN
961 CC_FLAGS_LTO    := -flto=thin -fsplit-lto-unit
962 KBUILD_LDFLAGS  += --thinlto-cache-dir=$(extmod_prefix).thinlto-cache
963 else
964 CC_FLAGS_LTO    := -flto
965 endif
966 CC_FLAGS_LTO    += -fvisibility=hidden
967
968 # Limit inlining across translation units to reduce binary size
969 KBUILD_LDFLAGS += -mllvm -import-instr-limit=5
970
971 # Check for frame size exceeding threshold during prolog/epilog insertion
972 # when using lld < 13.0.0.
973 ifneq ($(CONFIG_FRAME_WARN),0)
974 ifeq ($(shell test $(CONFIG_LLD_VERSION) -lt 130000; echo $$?),0)
975 KBUILD_LDFLAGS  += -plugin-opt=-warn-stack-size=$(CONFIG_FRAME_WARN)
976 endif
977 endif
978 endif
979
980 ifdef CONFIG_LTO
981 KBUILD_CFLAGS   += -fno-lto $(CC_FLAGS_LTO)
982 KBUILD_AFLAGS   += -fno-lto
983 export CC_FLAGS_LTO
984 endif
985
986 ifdef CONFIG_CFI_CLANG
987 CC_FLAGS_CFI    := -fsanitize=cfi \
988                    -fsanitize-cfi-cross-dso \
989                    -fno-sanitize-cfi-canonical-jump-tables \
990                    -fno-sanitize-trap=cfi \
991                    -fno-sanitize-blacklist
992
993 ifdef CONFIG_CFI_PERMISSIVE
994 CC_FLAGS_CFI    += -fsanitize-recover=cfi
995 endif
996
997 # If LTO flags are filtered out, we must also filter out CFI.
998 CC_FLAGS_LTO    += $(CC_FLAGS_CFI)
999 KBUILD_CFLAGS   += $(CC_FLAGS_CFI)
1000 export CC_FLAGS_CFI
1001 endif
1002
1003 ifdef CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B
1004 KBUILD_CFLAGS += -falign-functions=64
1005 endif
1006
1007 # arch Makefile may override CC so keep this after arch Makefile is included
1008 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
1009
1010 # warn about C99 declaration after statement
1011 KBUILD_CFLAGS += -Wdeclaration-after-statement
1012
1013 # Variable Length Arrays (VLAs) should not be used anywhere in the kernel
1014 KBUILD_CFLAGS += -Wvla
1015
1016 # disable pointer signed / unsigned warnings in gcc 4.0
1017 KBUILD_CFLAGS += -Wno-pointer-sign
1018
1019 # disable stringop warnings in gcc 8+
1020 KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation)
1021
1022 # We'll want to enable this eventually, but it's not going away for 5.7 at least
1023 KBUILD_CFLAGS += $(call cc-disable-warning, zero-length-bounds)
1024 KBUILD_CFLAGS += -Wno-array-bounds
1025 KBUILD_CFLAGS += $(call cc-disable-warning, stringop-overflow)
1026
1027 # Another good warning that we'll want to enable eventually
1028 KBUILD_CFLAGS += $(call cc-disable-warning, restrict)
1029
1030 # Enabled with W=2, disabled by default as noisy
1031 ifdef CONFIG_CC_IS_GCC
1032 KBUILD_CFLAGS += -Wno-maybe-uninitialized
1033 endif
1034
1035 ifdef CONFIG_CC_IS_GCC
1036 # The allocators already balk at large sizes, so silence the compiler
1037 # warnings for bounds checks involving those possible values. While
1038 # -Wno-alloc-size-larger-than would normally be used here, earlier versions
1039 # of gcc (<9.1) weirdly don't handle the option correctly when _other_
1040 # warnings are produced (?!). Using -Walloc-size-larger-than=SIZE_MAX
1041 # doesn't work (as it is documented to), silently resolving to "0" prior to
1042 # version 9.1 (and producing an error more recently). Numeric values larger
1043 # than PTRDIFF_MAX also don't work prior to version 9.1, which are silently
1044 # ignored, continuing to default to PTRDIFF_MAX. So, left with no other
1045 # choice, we must perform a versioned check to disable this warning.
1046 # https://lore.kernel.org/lkml/20210824115859.187f272f@canb.auug.org.au
1047 KBUILD_CFLAGS += $(call cc-ifversion, -ge, 0901, -Wno-alloc-size-larger-than)
1048 endif
1049
1050 # disable invalid "can't wrap" optimizations for signed / pointers
1051 KBUILD_CFLAGS   += -fno-strict-overflow
1052
1053 # Make sure -fstack-check isn't enabled (like gentoo apparently did)
1054 KBUILD_CFLAGS  += -fno-stack-check
1055
1056 # conserve stack if available
1057 ifdef CONFIG_CC_IS_GCC
1058 KBUILD_CFLAGS   += -fconserve-stack
1059 endif
1060
1061 # Prohibit date/time macros, which would make the build non-deterministic
1062 KBUILD_CFLAGS   += -Werror=date-time
1063
1064 # enforce correct pointer usage
1065 KBUILD_CFLAGS   += $(call cc-option,-Werror=incompatible-pointer-types)
1066
1067 # Require designated initializers for all marked structures
1068 KBUILD_CFLAGS   += $(call cc-option,-Werror=designated-init)
1069
1070 # change __FILE__ to the relative path from the srctree
1071 KBUILD_CPPFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
1072
1073 # include additional Makefiles when needed
1074 include-y                       := scripts/Makefile.extrawarn
1075 include-$(CONFIG_KASAN)         += scripts/Makefile.kasan
1076 include-$(CONFIG_KCSAN)         += scripts/Makefile.kcsan
1077 include-$(CONFIG_UBSAN)         += scripts/Makefile.ubsan
1078 include-$(CONFIG_KCOV)          += scripts/Makefile.kcov
1079 include-$(CONFIG_GCC_PLUGINS)   += scripts/Makefile.gcc-plugins
1080
1081 include $(addprefix $(srctree)/, $(include-y))
1082
1083 # scripts/Makefile.gcc-plugins is intentionally included last.
1084 # Do not add $(call cc-option,...) below this line. When you build the kernel
1085 # from the clean source tree, the GCC plugins do not exist at this point.
1086
1087 # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
1088 KBUILD_CPPFLAGS += $(KCPPFLAGS)
1089 KBUILD_AFLAGS   += $(KAFLAGS)
1090 KBUILD_CFLAGS   += $(KCFLAGS)
1091
1092 KBUILD_LDFLAGS_MODULE += --build-id=sha1
1093 LDFLAGS_vmlinux += --build-id=sha1
1094
1095 KBUILD_LDFLAGS  += -z noexecstack
1096 ifeq ($(CONFIG_LD_IS_BFD),y)
1097 KBUILD_LDFLAGS  += $(call ld-option,--no-warn-rwx-segments)
1098 endif
1099
1100 ifeq ($(CONFIG_STRIP_ASM_SYMS),y)
1101 LDFLAGS_vmlinux += $(call ld-option, -X,)
1102 endif
1103
1104 ifeq ($(CONFIG_RELR),y)
1105 LDFLAGS_vmlinux += --pack-dyn-relocs=relr --use-android-relr-tags
1106 endif
1107
1108 # We never want expected sections to be placed heuristically by the
1109 # linker. All sections should be explicitly named in the linker script.
1110 ifdef CONFIG_LD_ORPHAN_WARN
1111 LDFLAGS_vmlinux += --orphan-handling=warn
1112 endif
1113
1114 # Align the bit size of userspace programs with the kernel
1115 KBUILD_USERCFLAGS  += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS))
1116 KBUILD_USERLDFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS))
1117
1118 # make the checker run with the right architecture
1119 CHECKFLAGS += --arch=$(ARCH)
1120
1121 # insure the checker run with the right endianness
1122 CHECKFLAGS += $(if $(CONFIG_CPU_BIG_ENDIAN),-mbig-endian,-mlittle-endian)
1123
1124 # the checker needs the correct machine size
1125 CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)
1126
1127 # Default kernel image to build when no specific target is given.
1128 # KBUILD_IMAGE may be overruled on the command line or
1129 # set in the environment
1130 # Also any assignments in arch/$(ARCH)/Makefile take precedence over
1131 # this default value
1132 export KBUILD_IMAGE ?= vmlinux
1133
1134 #
1135 # INSTALL_PATH specifies where to place the updated kernel and system map
1136 # images. Default is /boot, but you can set it to other values
1137 export  INSTALL_PATH ?= /boot
1138
1139 #
1140 # INSTALL_DTBS_PATH specifies a prefix for relocations required by build roots.
1141 # Like INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed as
1142 # an argument if needed. Otherwise it defaults to the kernel install path
1143 #
1144 export INSTALL_DTBS_PATH ?= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE)
1145
1146 #
1147 # INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
1148 # relocations required by build roots.  This is not defined in the
1149 # makefile but the argument can be passed to make if needed.
1150 #
1151
1152 MODLIB  = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
1153 export MODLIB
1154
1155 PHONY += prepare0
1156
1157 export extmod_prefix = $(if $(KBUILD_EXTMOD),$(KBUILD_EXTMOD)/)
1158 export MODORDER := $(extmod_prefix)modules.order
1159 export MODULES_NSDEPS := $(extmod_prefix)modules.nsdeps
1160
1161 ifeq ($(KBUILD_EXTMOD),)
1162 core-y                  += kernel/ certs/ mm/ fs/ ipc/ security/ crypto/
1163 core-$(CONFIG_BLOCK)    += block/
1164 core-$(CONFIG_IO_URING) += io_uring/
1165
1166 vmlinux-dirs    := $(patsubst %/,%,$(filter %/, \
1167                      $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
1168                      $(libs-y) $(libs-m)))
1169
1170 vmlinux-alldirs := $(sort $(vmlinux-dirs) Documentation \
1171                      $(patsubst %/,%,$(filter %/, $(core-) \
1172                         $(drivers-) $(libs-))))
1173
1174 build-dirs      := $(vmlinux-dirs)
1175 clean-dirs      := $(vmlinux-alldirs)
1176
1177 subdir-modorder := $(addsuffix /modules.order, $(build-dirs))
1178
1179 # Externally visible symbols (used by link-vmlinux.sh)
1180 KBUILD_VMLINUX_OBJS := $(head-y) $(patsubst %/,%/built-in.a, $(core-y))
1181 KBUILD_VMLINUX_OBJS += $(addsuffix built-in.a, $(filter %/, $(libs-y)))
1182 ifdef CONFIG_MODULES
1183 KBUILD_VMLINUX_OBJS += $(patsubst %/, %/lib.a, $(filter %/, $(libs-y)))
1184 KBUILD_VMLINUX_LIBS := $(filter-out %/, $(libs-y))
1185 else
1186 KBUILD_VMLINUX_LIBS := $(patsubst %/,%/lib.a, $(libs-y))
1187 endif
1188 KBUILD_VMLINUX_OBJS += $(patsubst %/,%/built-in.a, $(drivers-y))
1189
1190 export KBUILD_VMLINUX_OBJS KBUILD_VMLINUX_LIBS
1191 export KBUILD_LDS          := arch/$(SRCARCH)/kernel/vmlinux.lds
1192 # used by scripts/Makefile.package
1193 export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) LICENSES arch include scripts tools)
1194
1195 vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_OBJS) $(KBUILD_VMLINUX_LIBS)
1196
1197 # Recurse until adjust_autoksyms.sh is satisfied
1198 PHONY += autoksyms_recursive
1199 ifdef CONFIG_TRIM_UNUSED_KSYMS
1200 # For the kernel to actually contain only the needed exported symbols,
1201 # we have to build modules as well to determine what those symbols are.
1202 # (this can be evaluated only once include/config/auto.conf has been included)
1203 KBUILD_MODULES := 1
1204
1205 autoksyms_recursive: descend modules.order
1206         $(Q)$(CONFIG_SHELL) $(srctree)/scripts/adjust_autoksyms.sh \
1207           "$(MAKE) -f $(srctree)/Makefile autoksyms_recursive"
1208 endif
1209
1210 autoksyms_h := $(if $(CONFIG_TRIM_UNUSED_KSYMS), include/generated/autoksyms.h)
1211
1212 quiet_cmd_autoksyms_h = GEN     $@
1213       cmd_autoksyms_h = mkdir -p $(dir $@); \
1214                         $(CONFIG_SHELL) $(srctree)/scripts/gen_autoksyms.sh $@
1215
1216 $(autoksyms_h):
1217         $(call cmd,autoksyms_h)
1218
1219 ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
1220
1221 # Final link of vmlinux with optional arch pass after final link
1222 cmd_link-vmlinux =                                                 \
1223         $(CONFIG_SHELL) $< "$(LD)" "$(KBUILD_LDFLAGS)" "$(LDFLAGS_vmlinux)";    \
1224         $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
1225
1226 vmlinux: scripts/link-vmlinux.sh autoksyms_recursive $(vmlinux-deps) FORCE
1227         +$(call if_changed_dep,link-vmlinux)
1228
1229 targets := vmlinux
1230
1231 # The actual objects are generated when descending,
1232 # make sure no implicit rule kicks in
1233 $(sort $(vmlinux-deps) $(subdir-modorder)): descend ;
1234
1235 filechk_kernel.release = \
1236         echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
1237
1238 # Store (new) KERNELRELEASE string in include/config/kernel.release
1239 include/config/kernel.release: FORCE
1240         $(call filechk,kernel.release)
1241
1242 # Additional helpers built in scripts/
1243 # Carefully list dependencies so we do not try to build scripts twice
1244 # in parallel
1245 PHONY += scripts
1246 scripts: scripts_basic scripts_dtc
1247         $(Q)$(MAKE) $(build)=$(@)
1248
1249 # Things we need to do before we recursively start building the kernel
1250 # or the modules are listed in "prepare".
1251 # A multi level approach is used. prepareN is processed before prepareN-1.
1252 # archprepare is used in arch Makefiles and when processed asm symlink,
1253 # version.h and scripts_basic is processed / created.
1254
1255 PHONY += prepare archprepare
1256
1257 archprepare: outputmakefile archheaders archscripts scripts include/config/kernel.release \
1258         asm-generic $(version_h) $(autoksyms_h) include/generated/utsrelease.h \
1259         include/generated/autoconf.h remove-stale-files
1260
1261 prepare0: archprepare
1262         $(Q)$(MAKE) $(build)=scripts/mod
1263         $(Q)$(MAKE) $(build)=.
1264
1265 # All the preparing..
1266 prepare: prepare0
1267
1268 PHONY += remove-stale-files
1269 remove-stale-files:
1270         $(Q)$(srctree)/scripts/remove-stale-files
1271
1272 # Support for using generic headers in asm-generic
1273 asm-generic := -f $(srctree)/scripts/Makefile.asm-generic obj
1274
1275 PHONY += asm-generic uapi-asm-generic
1276 asm-generic: uapi-asm-generic
1277         $(Q)$(MAKE) $(asm-generic)=arch/$(SRCARCH)/include/generated/asm \
1278         generic=include/asm-generic
1279 uapi-asm-generic:
1280         $(Q)$(MAKE) $(asm-generic)=arch/$(SRCARCH)/include/generated/uapi/asm \
1281         generic=include/uapi/asm-generic
1282
1283 # Generate some files
1284 # ---------------------------------------------------------------------------
1285
1286 # KERNELRELEASE can change from a few different places, meaning version.h
1287 # needs to be updated, so this check is forced on all builds
1288
1289 uts_len := 64
1290 define filechk_utsrelease.h
1291         if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
1292           echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2;    \
1293           exit 1;                                                         \
1294         fi;                                                               \
1295         echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"
1296 endef
1297
1298 define filechk_version.h
1299         if [ $(SUBLEVEL) -gt 255 ]; then                                 \
1300                 echo \#define LINUX_VERSION_CODE $(shell                 \
1301                 expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + 255); \
1302         else                                                             \
1303                 echo \#define LINUX_VERSION_CODE $(shell                 \
1304                 expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \
1305         fi;                                                              \
1306         echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) +  \
1307         ((c) > 255 ? 255 : (c)))';                                       \
1308         echo \#define LINUX_VERSION_MAJOR $(VERSION);                    \
1309         echo \#define LINUX_VERSION_PATCHLEVEL $(PATCHLEVEL);            \
1310         echo \#define LINUX_VERSION_SUBLEVEL $(SUBLEVEL)
1311 endef
1312
1313 $(version_h): PATCHLEVEL := $(if $(PATCHLEVEL), $(PATCHLEVEL), 0)
1314 $(version_h): SUBLEVEL := $(if $(SUBLEVEL), $(SUBLEVEL), 0)
1315 $(version_h): FORCE
1316         $(call filechk,version.h)
1317
1318 include/generated/utsrelease.h: include/config/kernel.release FORCE
1319         $(call filechk,utsrelease.h)
1320
1321 PHONY += headerdep
1322 headerdep:
1323         $(Q)find $(srctree)/include/ -name '*.h' | xargs --max-args 1 \
1324         $(srctree)/scripts/headerdep.pl -I$(srctree)/include
1325
1326 # ---------------------------------------------------------------------------
1327 # Kernel headers
1328
1329 #Default location for installed headers
1330 export INSTALL_HDR_PATH = $(objtree)/usr
1331
1332 quiet_cmd_headers_install = INSTALL $(INSTALL_HDR_PATH)/include
1333       cmd_headers_install = \
1334         mkdir -p $(INSTALL_HDR_PATH); \
1335         rsync -mrl --include='*/' --include='*\.h' --exclude='*' \
1336         usr/include $(INSTALL_HDR_PATH)
1337
1338 PHONY += headers_install
1339 headers_install: headers
1340         $(call cmd,headers_install)
1341
1342 PHONY += archheaders archscripts
1343
1344 hdr-inst := -f $(srctree)/scripts/Makefile.headersinst obj
1345
1346 PHONY += headers
1347 headers: $(version_h) scripts_unifdef uapi-asm-generic archheaders archscripts
1348         $(if $(filter um, $(SRCARCH)), $(error Headers not exportable for UML))
1349         $(Q)$(MAKE) $(hdr-inst)=include/uapi
1350         $(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi
1351
1352 # Deprecated. It is no-op now.
1353 PHONY += headers_check
1354 headers_check:
1355         @echo >&2 "=================== WARNING ==================="
1356         @echo >&2 "Since Linux 5.5, 'make headers_check' is no-op,"
1357         @echo >&2 "and will be removed after Linux 5.15 release."
1358         @echo >&2 "Please remove headers_check from your scripts."
1359         @echo >&2 "==============================================="
1360
1361 ifdef CONFIG_HEADERS_INSTALL
1362 prepare: headers
1363 endif
1364
1365 PHONY += scripts_unifdef
1366 scripts_unifdef: scripts_basic
1367         $(Q)$(MAKE) $(build)=scripts scripts/unifdef
1368
1369 # ---------------------------------------------------------------------------
1370 # Install
1371
1372 # Many distributions have the custom install script, /sbin/installkernel.
1373 # If DKMS is installed, 'make install' will eventually recuses back
1374 # to the this Makefile to build and install external modules.
1375 # Cancel sub_make_done so that options such as M=, V=, etc. are parsed.
1376
1377 install: sub_make_done :=
1378
1379 # ---------------------------------------------------------------------------
1380 # Tools
1381
1382 ifdef CONFIG_STACK_VALIDATION
1383 prepare: tools/objtool
1384 endif
1385
1386 ifdef CONFIG_BPF
1387 ifdef CONFIG_DEBUG_INFO_BTF
1388 prepare: tools/bpf/resolve_btfids
1389 endif
1390 endif
1391
1392 PHONY += resolve_btfids_clean
1393
1394 resolve_btfids_O = $(abspath $(objtree))/tools/bpf/resolve_btfids
1395
1396 # tools/bpf/resolve_btfids directory might not exist
1397 # in output directory, skip its clean in that case
1398 resolve_btfids_clean:
1399 ifneq ($(wildcard $(resolve_btfids_O)),)
1400         $(Q)$(MAKE) -sC $(srctree)/tools/bpf/resolve_btfids O=$(resolve_btfids_O) clean
1401 endif
1402
1403 # Clear a bunch of variables before executing the submake
1404 ifeq ($(quiet),silent_)
1405 tools_silent=s
1406 endif
1407
1408 tools/: FORCE
1409         $(Q)mkdir -p $(objtree)/tools
1410         $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(srctree)/tools/
1411
1412 tools/%: FORCE
1413         $(Q)mkdir -p $(objtree)/tools
1414         $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(srctree)/tools/ $*
1415
1416 # ---------------------------------------------------------------------------
1417 # Kernel selftest
1418
1419 PHONY += kselftest
1420 kselftest:
1421         $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests run_tests
1422
1423 kselftest-%: FORCE
1424         $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests $*
1425
1426 PHONY += kselftest-merge
1427 kselftest-merge:
1428         $(if $(wildcard $(objtree)/.config),, $(error No .config exists, config your kernel first!))
1429         $(Q)find $(srctree)/tools/testing/selftests -name config | \
1430                 xargs $(srctree)/scripts/kconfig/merge_config.sh -m $(objtree)/.config
1431         $(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
1432
1433 # ---------------------------------------------------------------------------
1434 # Devicetree files
1435
1436 ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/boot/dts/),)
1437 dtstree := arch/$(SRCARCH)/boot/dts
1438 endif
1439
1440 ifneq ($(dtstree),)
1441
1442 %.dtb: include/config/kernel.release scripts_dtc
1443         $(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
1444
1445 %.dtbo: include/config/kernel.release scripts_dtc
1446         $(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
1447
1448 PHONY += dtbs dtbs_install dtbs_check
1449 dtbs: include/config/kernel.release scripts_dtc
1450         $(Q)$(MAKE) $(build)=$(dtstree)
1451
1452 ifneq ($(filter dtbs_check, $(MAKECMDGOALS)),)
1453 export CHECK_DTBS=y
1454 dtbs: dt_binding_check
1455 endif
1456
1457 dtbs_check: dtbs
1458
1459 dtbs_install:
1460         $(Q)$(MAKE) $(dtbinst)=$(dtstree) dst=$(INSTALL_DTBS_PATH)
1461
1462 ifdef CONFIG_OF_EARLY_FLATTREE
1463 all: dtbs
1464 endif
1465
1466 endif
1467
1468 PHONY += scripts_dtc
1469 scripts_dtc: scripts_basic
1470         $(Q)$(MAKE) $(build)=scripts/dtc
1471
1472 ifneq ($(filter dt_binding_check, $(MAKECMDGOALS)),)
1473 export CHECK_DT_BINDING=y
1474 endif
1475
1476 PHONY += dt_binding_check
1477 dt_binding_check: scripts_dtc
1478         $(Q)$(MAKE) $(build)=Documentation/devicetree/bindings
1479
1480 # ---------------------------------------------------------------------------
1481 # Modules
1482
1483 ifdef CONFIG_MODULES
1484
1485 # By default, build modules as well
1486
1487 all: modules
1488
1489 # When we're building modules with modversions, we need to consider
1490 # the built-in objects during the descend as well, in order to
1491 # make sure the checksums are up to date before we record them.
1492 ifdef CONFIG_MODVERSIONS
1493   KBUILD_BUILTIN := 1
1494 endif
1495
1496 # Build modules
1497 #
1498 # A module can be listed more than once in obj-m resulting in
1499 # duplicate lines in modules.order files.  Those are removed
1500 # using awk while concatenating to the final file.
1501
1502 PHONY += modules
1503 modules: $(if $(KBUILD_BUILTIN),vmlinux) modules_check modules_prepare
1504
1505 cmd_modules_order = $(AWK) '!x[$$0]++' $(real-prereqs) > $@
1506
1507 modules.order: $(subdir-modorder) FORCE
1508         $(call if_changed,modules_order)
1509
1510 targets += modules.order
1511
1512 # Target to prepare building external modules
1513 PHONY += modules_prepare
1514 modules_prepare: prepare
1515         $(Q)$(MAKE) $(build)=scripts scripts/module.lds
1516
1517 export modules_sign_only :=
1518
1519 ifeq ($(CONFIG_MODULE_SIG),y)
1520 PHONY += modules_sign
1521 modules_sign: modules_install
1522         @:
1523
1524 # modules_sign is a subset of modules_install.
1525 # 'make modules_install modules_sign' is equivalent to 'make modules_install'.
1526 ifeq ($(filter modules_install,$(MAKECMDGOALS)),)
1527 modules_sign_only := y
1528 endif
1529 endif
1530
1531 modinst_pre :=
1532 ifneq ($(filter modules_install,$(MAKECMDGOALS)),)
1533 modinst_pre := __modinst_pre
1534 endif
1535
1536 modules_install: $(modinst_pre)
1537 PHONY += __modinst_pre
1538 __modinst_pre:
1539         @rm -rf $(MODLIB)/kernel
1540         @rm -f $(MODLIB)/source
1541         @mkdir -p $(MODLIB)/kernel
1542         @ln -s $(abspath $(srctree)) $(MODLIB)/source
1543         @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
1544                 rm -f $(MODLIB)/build ; \
1545                 ln -s $(CURDIR) $(MODLIB)/build ; \
1546         fi
1547         @sed 's:^:kernel/:' modules.order > $(MODLIB)/modules.order
1548         @cp -f modules.builtin $(MODLIB)/
1549         @cp -f $(objtree)/modules.builtin.modinfo $(MODLIB)/
1550
1551 endif # CONFIG_MODULES
1552
1553 ###
1554 # Cleaning is done on three levels.
1555 # make clean     Delete most generated files
1556 #                Leave enough to build external modules
1557 # make mrproper  Delete the current configuration, and all generated files
1558 # make distclean Remove editor backup files, patch leftover files and the like
1559
1560 # Directories & files removed with 'make clean'
1561 CLEAN_FILES += include/ksym vmlinux.symvers modules-only.symvers \
1562                modules.builtin modules.builtin.modinfo modules.nsdeps \
1563                compile_commands.json .thinlto-cache
1564
1565 # Directories & files removed with 'make mrproper'
1566 MRPROPER_FILES += include/config include/generated          \
1567                   arch/$(SRCARCH)/include/generated .tmp_objdiff \
1568                   debian snap tar-install \
1569                   .config .config.old .version \
1570                   Module.symvers \
1571                   certs/signing_key.pem certs/signing_key.x509 \
1572                   certs/x509.genkey \
1573                   vmlinux-gdb.py \
1574                   *.spec
1575
1576 # clean - Delete most, but leave enough to build external modules
1577 #
1578 clean: rm-files := $(CLEAN_FILES)
1579
1580 PHONY += archclean vmlinuxclean
1581
1582 vmlinuxclean:
1583         $(Q)$(CONFIG_SHELL) $(srctree)/scripts/link-vmlinux.sh clean
1584         $(Q)$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) clean)
1585
1586 clean: archclean vmlinuxclean resolve_btfids_clean
1587
1588 # mrproper - Delete all generated files, including .config
1589 #
1590 mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1591 mrproper-dirs      := $(addprefix _mrproper_,scripts)
1592
1593 PHONY += $(mrproper-dirs) mrproper
1594 $(mrproper-dirs):
1595         $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
1596
1597 mrproper: clean $(mrproper-dirs)
1598         $(call cmd,rmfiles)
1599
1600 # distclean
1601 #
1602 PHONY += distclean
1603
1604 distclean: mrproper
1605         @find . $(RCS_FIND_IGNORE) \
1606                 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1607                 -o -name '*.bak' -o -name '#*#' -o -name '*%' \
1608                 -o -name 'core' -o -name tags -o -name TAGS -o -name 'cscope*' \
1609                 -o -name GPATH -o -name GRTAGS -o -name GSYMS -o -name GTAGS \) \
1610                 -type f -print | xargs rm -f
1611
1612
1613 # Packaging of the kernel to various formats
1614 # ---------------------------------------------------------------------------
1615
1616 %src-pkg: FORCE
1617         $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.package $@
1618 %pkg: include/config/kernel.release FORCE
1619         $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.package $@
1620
1621 # Brief documentation of the typical targets used
1622 # ---------------------------------------------------------------------------
1623
1624 boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1625 boards := $(sort $(notdir $(boards)))
1626 board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
1627 board-dirs := $(sort $(notdir $(board-dirs:/=)))
1628
1629 PHONY += help
1630 help:
1631         @echo  'Cleaning targets:'
1632         @echo  '  clean           - Remove most generated files but keep the config and'
1633         @echo  '                    enough build support to build external modules'
1634         @echo  '  mrproper        - Remove all generated files + config + various backup files'
1635         @echo  '  distclean       - mrproper + remove editor backup and patch files'
1636         @echo  ''
1637         @echo  'Configuration targets:'
1638         @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
1639         @echo  ''
1640         @echo  'Other generic targets:'
1641         @echo  '  all             - Build all targets marked with [*]'
1642         @echo  '* vmlinux         - Build the bare kernel'
1643         @echo  '* modules         - Build all modules'
1644         @echo  '  modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
1645         @echo  '  dir/            - Build all files in dir and below'
1646         @echo  '  dir/file.[ois]  - Build specified target only'
1647         @echo  '  dir/file.ll     - Build the LLVM assembly file'
1648         @echo  '                    (requires compiler support for LLVM assembly generation)'
1649         @echo  '  dir/file.lst    - Build specified mixed source/assembly target only'
1650         @echo  '                    (requires a recent binutils and recent build (System.map))'
1651         @echo  '  dir/file.ko     - Build module including final link'
1652         @echo  '  modules_prepare - Set up for building external modules'
1653         @echo  '  tags/TAGS       - Generate tags file for editors'
1654         @echo  '  cscope          - Generate cscope index'
1655         @echo  '  gtags           - Generate GNU GLOBAL index'
1656         @echo  '  kernelrelease   - Output the release version string (use with make -s)'
1657         @echo  '  kernelversion   - Output the version stored in Makefile (use with make -s)'
1658         @echo  '  image_name      - Output the image name (use with make -s)'
1659         @echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
1660          echo  '                    (default: $(INSTALL_HDR_PATH))'; \
1661          echo  ''
1662         @echo  'Static analysers:'
1663         @echo  '  checkstack      - Generate a list of stack hogs'
1664         @echo  '  versioncheck    - Sanity check on version.h usage'
1665         @echo  '  includecheck    - Check for duplicate included header files'
1666         @echo  '  export_report   - List the usages of all exported symbols'
1667         @echo  '  headerdep       - Detect inclusion cycles in headers'
1668         @echo  '  coccicheck      - Check with Coccinelle'
1669         @echo  '  clang-analyzer  - Check with clang static analyzer'
1670         @echo  '  clang-tidy      - Check with clang-tidy'
1671         @echo  ''
1672         @echo  'Tools:'
1673         @echo  '  nsdeps          - Generate missing symbol namespace dependencies'
1674         @echo  ''
1675         @echo  'Kernel selftest:'
1676         @echo  '  kselftest         - Build and run kernel selftest'
1677         @echo  '                      Build, install, and boot kernel before'
1678         @echo  '                      running kselftest on it'
1679         @echo  '                      Run as root for full coverage'
1680         @echo  '  kselftest-all     - Build kernel selftest'
1681         @echo  '  kselftest-install - Build and install kernel selftest'
1682         @echo  '  kselftest-clean   - Remove all generated kselftest files'
1683         @echo  '  kselftest-merge   - Merge all the config dependencies of'
1684         @echo  '                      kselftest to existing .config.'
1685         @echo  ''
1686         @$(if $(dtstree), \
1687                 echo 'Devicetree:'; \
1688                 echo '* dtbs             - Build device tree blobs for enabled boards'; \
1689                 echo '  dtbs_install     - Install dtbs to $(INSTALL_DTBS_PATH)'; \
1690                 echo '  dt_binding_check - Validate device tree binding documents'; \
1691                 echo '  dtbs_check       - Validate device tree source files';\
1692                 echo '')
1693
1694         @echo 'Userspace tools targets:'
1695         @echo '  use "make tools/help"'
1696         @echo '  or  "cd tools; make help"'
1697         @echo  ''
1698         @echo  'Kernel packaging:'
1699         @$(MAKE) -f $(srctree)/scripts/Makefile.package help
1700         @echo  ''
1701         @echo  'Documentation targets:'
1702         @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp
1703         @echo  ''
1704         @echo  'Architecture specific targets ($(SRCARCH)):'
1705         @$(if $(archhelp),$(archhelp),\
1706                 echo '  No architecture specific help defined for $(SRCARCH)')
1707         @echo  ''
1708         @$(if $(boards), \
1709                 $(foreach b, $(boards), \
1710                 printf "  %-27s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
1711                 echo '')
1712         @$(if $(board-dirs), \
1713                 $(foreach b, $(board-dirs), \
1714                 printf "  %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
1715                 printf "  %-16s - Show all of the above\\n" help-boards; \
1716                 echo '')
1717
1718         @echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
1719         @echo  '  make V=2   [targets] 2 => give reason for rebuild of target'
1720         @echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
1721         @echo  '  make C=1   [targets] Check re-compiled c source with $$CHECK'
1722         @echo  '                       (sparse by default)'
1723         @echo  '  make C=2   [targets] Force check of all c source with $$CHECK'
1724         @echo  '  make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
1725         @echo  '  make W=n   [targets] Enable extra build checks, n=1,2,3 where'
1726         @echo  '                1: warnings which may be relevant and do not occur too often'
1727         @echo  '                2: warnings which occur quite often but may still be relevant'
1728         @echo  '                3: more obscure warnings, can most likely be ignored'
1729         @echo  '                Multiple levels can be combined with W=12 or W=123'
1730         @echo  ''
1731         @echo  'Execute "make" or "make all" to build all targets marked with [*] '
1732         @echo  'For further info see the ./README file'
1733
1734
1735 help-board-dirs := $(addprefix help-,$(board-dirs))
1736
1737 help-boards: $(help-board-dirs)
1738
1739 boards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)))
1740
1741 $(help-board-dirs): help-%:
1742         @echo  'Architecture specific targets ($(SRCARCH) $*):'
1743         @$(if $(boards-per-dir), \
1744                 $(foreach b, $(boards-per-dir), \
1745                 printf "  %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
1746                 echo '')
1747
1748
1749 # Documentation targets
1750 # ---------------------------------------------------------------------------
1751 DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
1752                linkcheckdocs dochelp refcheckdocs
1753 PHONY += $(DOC_TARGETS)
1754 $(DOC_TARGETS):
1755         $(Q)$(MAKE) $(build)=Documentation $@
1756
1757 # Misc
1758 # ---------------------------------------------------------------------------
1759
1760 PHONY += scripts_gdb
1761 scripts_gdb: prepare0
1762         $(Q)$(MAKE) $(build)=scripts/gdb
1763         $(Q)ln -fsn $(abspath $(srctree)/scripts/gdb/vmlinux-gdb.py)
1764
1765 ifdef CONFIG_GDB_SCRIPTS
1766 all: scripts_gdb
1767 endif
1768
1769 else # KBUILD_EXTMOD
1770
1771 ###
1772 # External module support.
1773 # When building external modules the kernel used as basis is considered
1774 # read-only, and no consistency checks are made and the make
1775 # system is not used on the basis kernel. If updates are required
1776 # in the basis kernel ordinary make commands (without M=...) must be used.
1777
1778 # We are always building only modules.
1779 KBUILD_BUILTIN :=
1780 KBUILD_MODULES := 1
1781
1782 build-dirs := $(KBUILD_EXTMOD)
1783 $(MODORDER): descend
1784         @:
1785
1786 compile_commands.json: $(extmod_prefix)compile_commands.json
1787 PHONY += compile_commands.json
1788
1789 clean-dirs := $(KBUILD_EXTMOD)
1790 clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers $(KBUILD_EXTMOD)/modules.nsdeps \
1791         $(KBUILD_EXTMOD)/compile_commands.json $(KBUILD_EXTMOD)/.thinlto-cache
1792
1793 PHONY += prepare
1794 # now expand this into a simple variable to reduce the cost of shell evaluations
1795 prepare: CC_VERSION_TEXT := $(CC_VERSION_TEXT)
1796 prepare:
1797         @if [ "$(CC_VERSION_TEXT)" != $(CONFIG_CC_VERSION_TEXT) ]; then \
1798                 echo >&2 "warning: the compiler differs from the one used to build the kernel"; \
1799                 echo >&2 "  The kernel was built by: "$(CONFIG_CC_VERSION_TEXT); \
1800                 echo >&2 "  You are using:           $(CC_VERSION_TEXT)"; \
1801         fi
1802
1803 PHONY += help
1804 help:
1805         @echo  '  Building external modules.'
1806         @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
1807         @echo  ''
1808         @echo  '  modules         - default target, build the module(s)'
1809         @echo  '  modules_install - install the module'
1810         @echo  '  clean           - remove generated files in module directory only'
1811         @echo  ''
1812
1813 # no-op for external module builds
1814 PHONY += modules_prepare
1815
1816 endif # KBUILD_EXTMOD
1817
1818 # ---------------------------------------------------------------------------
1819 # Modules
1820
1821 PHONY += modules modules_install
1822
1823 ifdef CONFIG_MODULES
1824
1825 modules: modules_check
1826         $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1827
1828 PHONY += modules_check
1829 modules_check: $(MODORDER)
1830         $(Q)$(CONFIG_SHELL) $(srctree)/scripts/modules-check.sh $<
1831
1832 quiet_cmd_depmod = DEPMOD  $(MODLIB)
1833       cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \
1834                    $(KERNELRELEASE)
1835
1836 modules_install:
1837         $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1838         $(call cmd,depmod)
1839
1840 else # CONFIG_MODULES
1841
1842 # Modules not configured
1843 # ---------------------------------------------------------------------------
1844
1845 modules modules_install:
1846         @echo >&2 '***'
1847         @echo >&2 '*** The present kernel configuration has modules disabled.'
1848         @echo >&2 '*** To use the module feature, please run "make menuconfig" etc.'
1849         @echo >&2 '*** to enable CONFIG_MODULES.'
1850         @echo >&2 '***'
1851         @exit 1
1852
1853 KBUILD_MODULES :=
1854
1855 endif # CONFIG_MODULES
1856
1857 # Single targets
1858 # ---------------------------------------------------------------------------
1859 # To build individual files in subdirectories, you can do like this:
1860 #
1861 #   make foo/bar/baz.s
1862 #
1863 # The supported suffixes for single-target are listed in 'single-targets'
1864 #
1865 # To build only under specific subdirectories, you can do like this:
1866 #
1867 #   make foo/bar/baz/
1868
1869 ifdef single-build
1870
1871 # .ko is special because modpost is needed
1872 single-ko := $(sort $(filter %.ko, $(MAKECMDGOALS)))
1873 single-no-ko := $(sort $(patsubst %.ko,%.mod, $(MAKECMDGOALS)))
1874
1875 $(single-ko): single_modpost
1876         @:
1877 $(single-no-ko): descend
1878         @:
1879
1880 # Remove MODORDER when done because it is not the real one.
1881 PHONY += single_modpost
1882 single_modpost: $(single-no-ko) modules_prepare
1883         $(Q){ $(foreach m, $(single-ko), echo $(extmod_prefix)$m;) } > $(MODORDER)
1884         $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1885         $(Q)rm -f $(MODORDER)
1886
1887 export KBUILD_SINGLE_TARGETS := $(addprefix $(extmod_prefix), $(single-no-ko))
1888
1889 # trim unrelated directories
1890 build-dirs := $(foreach d, $(build-dirs), \
1891                         $(if $(filter $(d)/%, $(KBUILD_SINGLE_TARGETS)), $(d)))
1892
1893 KBUILD_MODULES := 1
1894
1895 endif
1896
1897 # Handle descending into subdirectories listed in $(build-dirs)
1898 # Preset locale variables to speed up the build process. Limit locale
1899 # tweaks to this spot to avoid wrong language settings when running
1900 # make menuconfig etc.
1901 # Error messages still appears in the original language
1902 PHONY += descend $(build-dirs)
1903 descend: $(build-dirs)
1904 $(build-dirs): prepare
1905         $(Q)$(MAKE) $(build)=$@ \
1906         single-build=$(if $(filter-out $@/, $(filter $@/%, $(KBUILD_SINGLE_TARGETS))),1) \
1907         need-builtin=1 need-modorder=1
1908
1909 clean-dirs := $(addprefix _clean_, $(clean-dirs))
1910 PHONY += $(clean-dirs) clean
1911 $(clean-dirs):
1912         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1913
1914 clean: $(clean-dirs)
1915         $(call cmd,rmfiles)
1916         @find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1917                 \( -name '*.[aios]' -o -name '*.ko' -o -name '.*.cmd' \
1918                 -o -name '*.ko.*' \
1919                 -o -name '*.dtb' -o -name '*.dtbo' -o -name '*.dtb.S' -o -name '*.dt.yaml' \
1920                 -o -name '*.dwo' -o -name '*.lst' \
1921                 -o -name '*.su' -o -name '*.mod' \
1922                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
1923                 -o -name '*.lex.c' -o -name '*.tab.[ch]' \
1924                 -o -name '*.asn1.[ch]' \
1925                 -o -name '*.symtypes' -o -name 'modules.order' \
1926                 -o -name '.tmp_*.o.*' \
1927                 -o -name '*.c.[012]*.*' \
1928                 -o -name '*.ll' \
1929                 -o -name '*.gcno' \
1930                 -o -name '*.*.symversions' \) -type f -print | xargs rm -f
1931
1932 # Generate tags for editors
1933 # ---------------------------------------------------------------------------
1934 quiet_cmd_tags = GEN     $@
1935       cmd_tags = $(BASH) $(srctree)/scripts/tags.sh $@
1936
1937 tags TAGS cscope gtags: FORCE
1938         $(call cmd,tags)
1939
1940 # Script to generate missing namespace dependencies
1941 # ---------------------------------------------------------------------------
1942
1943 PHONY += nsdeps
1944 nsdeps: export KBUILD_NSDEPS=1
1945 nsdeps: modules
1946         $(Q)$(CONFIG_SHELL) $(srctree)/scripts/nsdeps
1947
1948 # Clang Tooling
1949 # ---------------------------------------------------------------------------
1950
1951 quiet_cmd_gen_compile_commands = GEN     $@
1952       cmd_gen_compile_commands = $(PYTHON3) $< -a $(AR) -o $@ $(filter-out $<, $(real-prereqs))
1953
1954 $(extmod_prefix)compile_commands.json: scripts/clang-tools/gen_compile_commands.py \
1955         $(if $(KBUILD_EXTMOD),,$(KBUILD_VMLINUX_OBJS) $(KBUILD_VMLINUX_LIBS)) \
1956         $(if $(CONFIG_MODULES), $(MODORDER)) FORCE
1957         $(call if_changed,gen_compile_commands)
1958
1959 targets += $(extmod_prefix)compile_commands.json
1960
1961 PHONY += clang-tidy clang-analyzer
1962
1963 ifdef CONFIG_CC_IS_CLANG
1964 quiet_cmd_clang_tools = CHECK   $<
1965       cmd_clang_tools = $(PYTHON3) $(srctree)/scripts/clang-tools/run-clang-tools.py $@ $<
1966
1967 clang-tidy clang-analyzer: $(extmod_prefix)compile_commands.json
1968         $(call cmd,clang_tools)
1969 else
1970 clang-tidy clang-analyzer:
1971         @echo "$@ requires CC=clang" >&2
1972         @false
1973 endif
1974
1975 # Scripts to check various things for consistency
1976 # ---------------------------------------------------------------------------
1977
1978 PHONY += includecheck versioncheck coccicheck export_report
1979
1980 includecheck:
1981         find $(srctree)/* $(RCS_FIND_IGNORE) \
1982                 -name '*.[hcS]' -type f -print | sort \
1983                 | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
1984
1985 versioncheck:
1986         find $(srctree)/* $(RCS_FIND_IGNORE) \
1987                 -name '*.[hcS]' -type f -print | sort \
1988                 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
1989
1990 coccicheck:
1991         $(Q)$(BASH) $(srctree)/scripts/$@
1992
1993 export_report:
1994         $(PERL) $(srctree)/scripts/export_report.pl
1995
1996 PHONY += checkstack kernelrelease kernelversion image_name
1997
1998 # UML needs a little special treatment here.  It wants to use the host
1999 # toolchain, so needs $(SUBARCH) passed to checkstack.pl.  Everyone
2000 # else wants $(ARCH), including people doing cross-builds, which means
2001 # that $(SUBARCH) doesn't work here.
2002 ifeq ($(ARCH), um)
2003 CHECKSTACK_ARCH := $(SUBARCH)
2004 else
2005 CHECKSTACK_ARCH := $(ARCH)
2006 endif
2007 checkstack:
2008         $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
2009         $(PERL) $(srctree)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
2010
2011 kernelrelease:
2012         @echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
2013
2014 kernelversion:
2015         @echo $(KERNELVERSION)
2016
2017 image_name:
2018         @echo $(KBUILD_IMAGE)
2019
2020 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
2021       cmd_rmfiles = rm -rf $(rm-files)
2022
2023 # read saved command lines for existing targets
2024 existing-targets := $(wildcard $(sort $(targets)))
2025
2026 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
2027
2028 endif # config-build
2029 endif # mixed-build
2030 endif # need-sub-make
2031
2032 PHONY += FORCE
2033 FORCE:
2034
2035 # Declare the contents of the PHONY variable as phony.  We keep that
2036 # information in a variable so we can use it in if_changed and friends.
2037 .PHONY: $(PHONY)