blob: 0d5dd5413af03fcda52614ca044fedb7d2cfca7f [file] [log] [blame]
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001======================
Linus Torvalds1da177e2005-04-16 15:20:36 -07002Linux Kernel Makefiles
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03003======================
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5This document describes the Linux kernel Makefiles.
6
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03007.. Table of Contents
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 === 1 Overview
10 === 2 Who does what
11 === 3 The kbuild files
12 --- 3.1 Goal definitions
13 --- 3.2 Built-in object goals - obj-y
14 --- 3.3 Loadable module goals - obj-m
15 --- 3.4 Objects which export symbols
16 --- 3.5 Library file goals - lib-y
17 --- 3.6 Descending down in directories
18 --- 3.7 Compilation flags
Randy Dunlapb26ff482020-08-28 10:26:26 -070019 --- 3.8 <deleted>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 --- 3.9 Dependency tracking
21 --- 3.10 Special Rules
Sam Ravnborg20a468b2006-01-22 13:34:15 +010022 --- 3.11 $(CC) support functions
Sam Ravnborg691ef3e2009-09-19 10:31:45 +020023 --- 3.12 $(LD) support functions
Lukas Bulwahneb38f372020-10-13 16:48:05 -070024 --- 3.13 Script Invocation
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26 === 4 Host Program support
27 --- 4.1 Simple Host Program
28 --- 4.2 Composite Host Programs
Masahiro Yamada62e22102014-07-16 16:12:21 +090029 --- 4.3 Using C++ for host programs
30 --- 4.4 Controlling compiler options for host programs
31 --- 4.5 When host programs are actually built
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Masahiro Yamadae079a082020-04-29 12:45:17 +090033 === 5 Userspace Program support
34 --- 5.1 Simple Userspace Program
35 --- 5.2 Composite Userspace Programs
36 --- 5.3 Controlling compiler options for userspace programs
37 --- 5.4 When userspace programs are actually built
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Masahiro Yamadae079a082020-04-29 12:45:17 +090039 === 6 Kbuild clean infrastructure
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Masahiro Yamadae079a082020-04-29 12:45:17 +090041 === 7 Architecture Makefiles
42 --- 7.1 Set variables to tweak the build to the architecture
Randy Dunlapb26ff482020-08-28 10:26:26 -070043 --- 7.2 Add prerequisites to archheaders
44 --- 7.3 Add prerequisites to archprepare
Masahiro Yamadae079a082020-04-29 12:45:17 +090045 --- 7.4 List directories to visit when descending
46 --- 7.5 Architecture-specific boot images
47 --- 7.6 Building non-kbuild targets
48 --- 7.7 Commands useful for building a boot image
49 --- 7.8 Custom kbuild commands
50 --- 7.9 Preprocessing linker scripts
51 --- 7.10 Generic header files
52 --- 7.11 Post-link pass
Sam Ravnborgc7bb3492009-04-10 08:52:43 +020053
Masahiro Yamadae079a082020-04-29 12:45:17 +090054 === 8 Kbuild syntax for exported headers
55 --- 8.1 no-export-headers
56 --- 8.2 generic-y
57 --- 8.3 generated-y
58 --- 8.4 mandatory-y
59
60 === 9 Kbuild Variables
61 === 10 Makefile language
62 === 11 Credits
63 === 12 TODO
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300651 Overview
66==========
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -030068The Makefiles have five parts::
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 Makefile the top Makefile.
71 .config the kernel configuration file.
72 arch/$(ARCH)/Makefile the arch Makefile.
73 scripts/Makefile.* common rules etc. for all kbuild Makefiles.
74 kbuild Makefiles there are about 500 of these.
75
76The top Makefile reads the .config file, which comes from the kernel
77configuration process.
78
79The top Makefile is responsible for building two major products: vmlinux
80(the resident kernel image) and modules (any module files).
81It builds these goals by recursively descending into the subdirectories of
82the kernel source tree.
83The list of subdirectories which are visited depends upon the kernel
84configuration. The top Makefile textually includes an arch Makefile
85with the name arch/$(ARCH)/Makefile. The arch Makefile supplies
86architecture-specific information to the top Makefile.
87
88Each subdirectory has a kbuild Makefile which carries out the commands
89passed down from above. The kbuild Makefile uses information from the
Bryce Harrington39e6e9c2006-09-20 12:43:37 -070090.config file to construct various file lists used by kbuild to build
Linus Torvalds1da177e2005-04-16 15:20:36 -070091any built-in or modular targets.
92
93scripts/Makefile.* contains all the definitions/rules etc. that
94are used to build the kernel based on the kbuild makefiles.
95
96
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300972 Who does what
98===============
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100People have four different relationships with the kernel Makefiles.
101
102*Users* are people who build kernels. These people type commands such as
103"make menuconfig" or "make". They usually do not read or edit
104any kernel Makefiles (or any other source files).
105
106*Normal developers* are people who work on features such as device
107drivers, file systems, and network protocols. These people need to
Jan Engelhardta07f6032006-07-27 22:14:29 +0200108maintain the kbuild Makefiles for the subsystem they are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109working on. In order to do this effectively, they need some overall
110knowledge about the kernel Makefiles, plus detailed knowledge about the
111public interface for kbuild.
112
113*Arch developers* are people who work on an entire architecture, such
114as sparc or ia64. Arch developers need to know about the arch Makefile
115as well as kbuild Makefiles.
116
117*Kbuild developers* are people who work on the kernel build system itself.
118These people need to know about all aspects of the kernel Makefiles.
119
120This document is aimed towards normal developers and arch developers.
121
122
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001233 The kbuild files
124==================
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126Most Makefiles within the kernel are kbuild Makefiles that use the
Jan Engelhardta07f6032006-07-27 22:14:29 +0200127kbuild infrastructure. This chapter introduces the syntax used in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128kbuild makefiles.
Sam Ravnborg172c3ae2006-03-10 00:23:32 +0100129The preferred name for the kbuild files are 'Makefile' but 'Kbuild' can
Jan Engelhardta07f6032006-07-27 22:14:29 +0200130be used and if both a 'Makefile' and a 'Kbuild' file exists, then the 'Kbuild'
Sam Ravnborg172c3ae2006-03-10 00:23:32 +0100131file will be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Randy Dunlapb26ff482020-08-28 10:26:26 -0700133Section 3.1 "Goal definitions" is a quick intro; further chapters provide
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134more details, with real examples.
135
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001363.1 Goal definitions
137--------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 Goal definitions are the main part (heart) of the kbuild Makefile.
140 These lines define the files to be built, any special compilation
141 options, and any subdirectories to be entered recursively.
142
143 The most simple kbuild makefile contains one line:
144
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300145 Example::
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 obj-y += foo.o
148
Randy Dunlap5c811e52007-02-17 20:03:14 +0100149 This tells kbuild that there is one object in that directory, named
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 foo.o. foo.o will be built from foo.c or foo.S.
151
152 If foo.o shall be built as a module, the variable obj-m is used.
153 Therefore the following pattern is often used:
154
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300155 Example::
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 obj-$(CONFIG_FOO) += foo.o
158
159 $(CONFIG_FOO) evaluates to either y (for built-in) or m (for module).
160 If CONFIG_FOO is neither y nor m, then the file will not be compiled
161 nor linked.
162
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001633.2 Built-in object goals - obj-y
164---------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 The kbuild Makefile specifies object files for vmlinux
Jan Engelhardta07f6032006-07-27 22:14:29 +0200167 in the $(obj-y) lists. These lists depend on the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 configuration.
169
170 Kbuild compiles all the $(obj-y) files. It then calls
Nicholas Pigginf49821e2018-02-11 00:25:04 +1000171 "$(AR) rcSTP" to merge these files into one built-in.a file.
Masahiro Yamadadee94952019-01-17 09:10:03 +0900172 This is a thin archive without a symbol table. It will be later
173 linked into vmlinux by scripts/link-vmlinux.sh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 The order of files in $(obj-y) is significant. Duplicates in
176 the lists are allowed: the first instance will be linked into
Nicholas Pigginf49821e2018-02-11 00:25:04 +1000177 built-in.a and succeeding instances will be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 Link order is significant, because certain functions
180 (module_init() / __initcall) will be called during boot in the
181 order they appear. So keep in mind that changing the link
Jan Engelhardta07f6032006-07-27 22:14:29 +0200182 order may e.g. change the order in which your SCSI
183 controllers are detected, and thus your disks are renumbered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300185 Example::
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 #drivers/isdn/i4l/Makefile
188 # Makefile for the kernel ISDN subsystem and device drivers.
189 # Each configuration option enables a list of files.
Matt Mooney2f5a2f82010-08-05 11:23:11 -0700190 obj-$(CONFIG_ISDN_I4L) += isdn.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
192
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001933.3 Loadable module goals - obj-m
194---------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Geert Uytterhoeven39fed702014-08-08 17:23:10 +0200196 $(obj-m) specifies object files which are built as loadable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 kernel modules.
198
199 A module may be built from one source file or several source
200 files. In the case of one source file, the kbuild makefile
201 simply adds the file to $(obj-m).
202
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300203 Example::
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 #drivers/isdn/i4l/Makefile
206 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
207
208 Note: In this example $(CONFIG_ISDN_PPP_BSDCOMP) evaluates to 'm'
209
210 If a kernel module is built from several source files, you specify
Matt Mooney4f827282010-08-05 11:23:11 -0700211 that you want to build a module in the same way as above; however,
212 kbuild needs to know which object files you want to build your
213 module from, so you have to tell it by setting a $(<module_name>-y)
214 variable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300216 Example::
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 #drivers/isdn/i4l/Makefile
Matt Mooney4f827282010-08-05 11:23:11 -0700219 obj-$(CONFIG_ISDN_I4L) += isdn.o
220 isdn-y := isdn_net_lib.o isdn_v110.o isdn_common.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 In this example, the module name will be isdn.o. Kbuild will
Matt Mooney4f827282010-08-05 11:23:11 -0700223 compile the objects listed in $(isdn-y) and then run
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 "$(LD) -r" on the list of these files to generate isdn.o.
225
Matt Mooney4f827282010-08-05 11:23:11 -0700226 Due to kbuild recognizing $(<module_name>-y) for composite objects,
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300227 you can use the value of a `CONFIG_` symbol to optionally include an
Matt Mooney4f827282010-08-05 11:23:11 -0700228 object file as part of a composite object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300230 Example::
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 #fs/ext2/Makefile
Matt Mooney4f827282010-08-05 11:23:11 -0700233 obj-$(CONFIG_EXT2_FS) += ext2.o
234 ext2-y := balloc.o dir.o file.o ialloc.o inode.o ioctl.o \
235 namei.o super.o symlink.o
236 ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o xattr_user.o \
237 xattr_trusted.o
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700238
Matt Mooney4f827282010-08-05 11:23:11 -0700239 In this example, xattr.o, xattr_user.o and xattr_trusted.o are only
240 part of the composite object ext2.o if $(CONFIG_EXT2_FS_XATTR)
241 evaluates to 'y'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 Note: Of course, when you are building objects into the kernel,
244 the syntax above will also work. So, if you have CONFIG_EXT2_FS=y,
245 kbuild will build an ext2.o file for you out of the individual
Nicholas Pigginf49821e2018-02-11 00:25:04 +1000246 parts and then link this into built-in.a, as you would expect.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03002483.4 Objects which export symbols
249--------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 No special notation is required in the makefiles for
252 modules exporting symbols.
253
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03002543.5 Library file goals - lib-y
255------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jan Engelhardta07f6032006-07-27 22:14:29 +0200257 Objects listed with obj-* are used for modules, or
Nicholas Pigginf49821e2018-02-11 00:25:04 +1000258 combined in a built-in.a for that specific directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 There is also the possibility to list objects that will
260 be included in a library, lib.a.
261 All objects listed with lib-y are combined in a single
262 library for that directory.
Matt LaPlante5d3f0832006-11-30 05:21:10 +0100263 Objects that are listed in obj-y and additionally listed in
264 lib-y will not be included in the library, since they will
265 be accessible anyway.
Jan Engelhardta07f6032006-07-27 22:14:29 +0200266 For consistency, objects listed in lib-m will be included in lib.a.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 Note that the same kbuild makefile may list files to be built-in
269 and to be part of a library. Therefore the same directory
Nicholas Pigginf49821e2018-02-11 00:25:04 +1000270 may contain both a built-in.a and a lib.a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300272 Example::
273
Matt Mooney2f5a2f82010-08-05 11:23:11 -0700274 #arch/x86/lib/Makefile
275 lib-y := delay.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Matt Mooney2f5a2f82010-08-05 11:23:11 -0700277 This will create a library lib.a based on delay.o. For kbuild to
278 actually recognize that there is a lib.a being built, the directory
279 shall be listed in libs-y.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300280
H. Peter Anvin052ad272011-11-17 13:17:35 -0800281 See also "6.4 List directories to visit when descending".
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700282
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300283 Use of lib-y is normally restricted to `lib/` and `arch/*/lib`.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03002853.6 Descending down in directories
286----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 A Makefile is only responsible for building objects in its own
289 directory. Files in subdirectories should be taken care of by
290 Makefiles in these subdirs. The build system will automatically
291 invoke make recursively in subdirectories, provided you let it know of
292 them.
293
Jan Engelhardta07f6032006-07-27 22:14:29 +0200294 To do so, obj-y and obj-m are used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ext2 lives in a separate directory, and the Makefile present in fs/
296 tells kbuild to descend down using the following assignment.
297
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300298 Example::
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 #fs/Makefile
301 obj-$(CONFIG_EXT2_FS) += ext2/
302
303 If CONFIG_EXT2_FS is set to either 'y' (built-in) or 'm' (modular)
304 the corresponding obj- variable will be set, and kbuild will descend
305 down in the ext2 directory.
Masahiro Yamada28f94a42019-12-19 20:51:00 +0900306
307 Kbuild uses this information not only to decide that it needs to visit
308 the directory, but also to decide whether or not to link objects from
309 the directory into vmlinux.
310
311 When Kbuild descends into the directory with 'y', all built-in objects
312 from that directory are combined into the built-in.a, which will be
313 eventually linked into vmlinux.
314
315 When Kbuild descends into the directory with 'm', in contrast, nothing
316 from that directory will be linked into vmlinux. If the Makefile in
317 that directory specifies obj-y, those objects will be left orphan.
318 It is very likely a bug of the Makefile or of dependencies in Kconfig.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300320 It is good practice to use a `CONFIG_` variable when assigning directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 names. This allows kbuild to totally skip the directory if the
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300322 corresponding `CONFIG_` option is neither 'y' nor 'm'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03003243.7 Compilation flags
325---------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Sam Ravnborgf77bf012007-10-15 22:25:06 +0200327 ccflags-y, asflags-y and ldflags-y
Nicolas Kaiserc95940f2010-08-05 11:23:11 -0700328 These three flags apply only to the kbuild makefile in which they
329 are assigned. They are used for all the normal cc, as and ld
330 invocations happening during a recursive build.
Sam Ravnborgf77bf012007-10-15 22:25:06 +0200331 Note: Flags with the same behaviour were previously named:
Nicolas Kaiserc95940f2010-08-05 11:23:11 -0700332 EXTRA_CFLAGS, EXTRA_AFLAGS and EXTRA_LDFLAGS.
333 They are still supported but their usage is deprecated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700335 ccflags-y specifies options for compiling with $(CC).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300337 Example::
338
Sedat Dilek3d91a352017-07-24 17:27:05 +0200339 # drivers/acpi/acpica/Makefile
340 ccflags-y := -Os -D_LINUX -DBUILDING_ACPICA
341 ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 This variable is necessary because the top Makefile owns the
Sam Ravnborga0f97e02007-10-14 22:21:35 +0200344 variable $(KBUILD_CFLAGS) and uses it for compilation flags for the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 entire tree.
346
Masahiro Yamada5ef87262019-07-13 11:45:58 +0900347 asflags-y specifies assembler options.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300349 Example::
350
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700351 #arch/sparc/kernel/Makefile
352 asflags-y := -ansi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700354 ldflags-y specifies options for linking with $(LD).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300356 Example::
357
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700358 #arch/cris/boot/compressed/Makefile
359 ldflags-y += -T $(srctree)/$(src)/decompress_$(arch-y).lds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Sam Ravnborg720097d2009-04-19 11:04:26 +0200361 subdir-ccflags-y, subdir-asflags-y
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700362 The two flags listed above are similar to ccflags-y and asflags-y.
Nicolas Kaiserc95940f2010-08-05 11:23:11 -0700363 The difference is that the subdir- variants have effect for the kbuild
364 file where they are present and all subdirectories.
365 Options specified using subdir-* are added to the commandline before
366 the options specified using the non-subdir variants.
Sam Ravnborg720097d2009-04-19 11:04:26 +0200367
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300368 Example::
369
Sam Ravnborg720097d2009-04-19 11:04:26 +0200370 subdir-ccflags-y := -Werror
371
Masahiro Yamada15d57612020-07-07 18:21:16 +0900372 ccflags-remove-y, asflags-remove-y
373 These flags are used to remove particular flags for the compiler,
374 assembler invocations.
375
376 Example::
377
378 ccflags-remove-$(CONFIG_MCOUNT) += -pg
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 CFLAGS_$@, AFLAGS_$@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 CFLAGS_$@ and AFLAGS_$@ only apply to commands in current
382 kbuild makefile.
383
384 $(CFLAGS_$@) specifies per-file options for $(CC). The $@
385 part has a literal value which specifies the file that it is for.
386
Masahiro Yamada15d57612020-07-07 18:21:16 +0900387 CFLAGS_$@ has the higher priority than ccflags-remove-y; CFLAGS_$@
388 can re-add compiler flags that were removed by ccflags-remove-y.
389
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300390 Example::
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 # drivers/scsi/Makefile
393 CFLAGS_aha152x.o = -DAHA152X_STAT -DAUTOCONF
394 CFLAGS_gdth.o = # -DDEBUG_GDTH=2 -D__SERIAL__ -D__COM2__ \
395 -DGDTH_STATISTICS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700397 These two lines specify compilation flags for aha152x.o and gdth.o.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 $(AFLAGS_$@) is a similar feature for source files in assembly
400 languages.
401
Masahiro Yamada15d57612020-07-07 18:21:16 +0900402 AFLAGS_$@ has the higher priority than asflags-remove-y; AFLAGS_$@
403 can re-add assembler flags that were removed by asflags-remove-y.
404
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300405 Example::
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 # arch/arm/kernel/Makefile
Matt Mooneyeb07e1b2010-08-05 11:23:11 -0700408 AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET)
409 AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312
410 AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03004133.9 Dependency tracking
414-----------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 Kbuild tracks dependencies on the following:
Mauro Carvalho Chehab16886942019-07-09 13:25:51 -0300417
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300418 1) All prerequisite files (both `*.c` and `*.h`)
419 2) `CONFIG_` options used in all prerequisite files
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 3) Command-line used to compile target
421
422 Thus, if you change an option to $(CC) all affected files will
423 be re-compiled.
424
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03004253.10 Special Rules
426------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 Special rules are used when the kbuild infrastructure does
429 not provide the required support. A typical example is
430 header files generated during the build process.
Randy Dunlap5c811e52007-02-17 20:03:14 +0100431 Another example are the architecture-specific Makefiles which
Jan Engelhardta07f6032006-07-27 22:14:29 +0200432 need special rules to prepare boot images etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 Special rules are written as normal Make rules.
435 Kbuild is not executing in the directory where the Makefile is
436 located, so all special rules shall provide a relative
437 path to prerequisite files and target files.
438
439 Two variables are used when defining special rules:
440
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300441 $(src)
442 $(src) is a relative path which points to the directory
443 where the Makefile is located. Always use $(src) when
444 referring to files located in the src tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300446 $(obj)
447 $(obj) is a relative path which points to the directory
448 where the target is saved. Always use $(obj) when
449 referring to generated files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300451 Example::
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 #drivers/scsi/Makefile
454 $(obj)/53c8xx_d.h: $(src)/53c7,8xx.scr $(src)/script_asm.pl
455 $(CPP) -DCHIP=810 - < $< | ... $(src)/script_asm.pl
456
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300457 This is a special rule, following the normal syntax
458 required by make.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300460 The target file depends on two prerequisite files. References
461 to the target file are prefixed with $(obj), references
462 to prerequisites are referenced with $(src) (because they are not
463 generated files).
Mike Frysinger5410ecc2008-11-06 03:31:34 -0500464
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300465 $(kecho)
466 echoing information to user in a rule is often a good practice
467 but when execution "make -s" one does not expect to see any output
468 except for warnings/errors.
469 To support this kbuild defines $(kecho) which will echo out the
470 text following $(kecho) to stdout except if "make -s" is used.
471
472 Example::
473
Mike Frysinger5410ecc2008-11-06 03:31:34 -0500474 #arch/blackfin/boot/Makefile
475 $(obj)/vmImage: $(obj)/vmlinux.gz
476 $(call if_changed,uimage)
477 @$(kecho) 'Kernel: $@ is ready'
478
479
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03004803.11 $(CC) support functions
481----------------------------
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100482
Jan Engelhardta07f6032006-07-27 22:14:29 +0200483 The kernel may be built with several different versions of
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100484 $(CC), each supporting a unique set of features and options.
Geert Uytterhoeven39fed702014-08-08 17:23:10 +0200485 kbuild provides basic support to check for valid options for $(CC).
Daniel Walkere95be9a2006-10-04 02:15:21 -0700486 $(CC) is usually the gcc compiler, but other alternatives are
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100487 available.
488
489 as-option
Jan Engelhardta07f6032006-07-27 22:14:29 +0200490 as-option is used to check if $(CC) -- when used to compile
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300491 assembler (`*.S`) files -- supports the given option. An optional
Jan Engelhardta07f6032006-07-27 22:14:29 +0200492 second option may be specified if the first option is not supported.
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100493
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300494 Example::
495
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100496 #arch/sh/Makefile
497 cflags-y += $(call as-option,-Wa$(comma)-isa=$(isa-y),)
498
Jan Engelhardta07f6032006-07-27 22:14:29 +0200499 In the above example, cflags-y will be assigned the option
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100500 -Wa$(comma)-isa=$(isa-y) if it is supported by $(CC).
501 The second argument is optional, and if supplied will be used
502 if first argument is not supported.
503
Andi Kleene2414912006-09-26 10:52:30 +0200504 as-instr
505 as-instr checks if the assembler reports a specific instruction
506 and then outputs either option1 or option2
507 C escapes are supported in the test instruction
Masahiro Yamada5ef87262019-07-13 11:45:58 +0900508 Note: as-instr-option uses KBUILD_AFLAGS for assembler options
Andi Kleene2414912006-09-26 10:52:30 +0200509
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100510 cc-option
Geert Uytterhoeven39fed702014-08-08 17:23:10 +0200511 cc-option is used to check if $(CC) supports a given option, and if
512 not supported to use an optional second option.
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100513
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300514 Example::
515
Wanlong Gao25eb6502011-06-13 17:53:53 +0800516 #arch/x86/Makefile
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100517 cflags-y += $(call cc-option,-march=pentium-mmx,-march=i586)
518
Randy Dunlap5c811e52007-02-17 20:03:14 +0100519 In the above example, cflags-y will be assigned the option
Jan Engelhardta07f6032006-07-27 22:14:29 +0200520 -march=pentium-mmx if supported by $(CC), otherwise -march=i586.
521 The second argument to cc-option is optional, and if omitted,
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100522 cflags-y will be assigned no value if first option is not supported.
Sam Ravnborga0f97e02007-10-14 22:21:35 +0200523 Note: cc-option uses KBUILD_CFLAGS for $(CC) options
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100524
525 cc-option-yn
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700526 cc-option-yn is used to check if gcc supports a given option
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100527 and return 'y' if supported, otherwise 'n'.
528
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300529 Example::
530
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100531 #arch/ppc/Makefile
532 biarch := $(call cc-option-yn, -m32)
533 aflags-$(biarch) += -a32
534 cflags-$(biarch) += -m32
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700535
Jan Engelhardta07f6032006-07-27 22:14:29 +0200536 In the above example, $(biarch) is set to y if $(CC) supports the -m32
537 option. When $(biarch) equals 'y', the expanded variables $(aflags-y)
538 and $(cflags-y) will be assigned the values -a32 and -m32,
539 respectively.
Sam Ravnborga0f97e02007-10-14 22:21:35 +0200540 Note: cc-option-yn uses KBUILD_CFLAGS for $(CC) options
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100541
Michal Marek8417da6f2011-05-02 12:51:15 +0200542 cc-disable-warning
543 cc-disable-warning checks if gcc supports a given warning and returns
544 the commandline switch to disable it. This special function is needed,
545 because gcc 4.4 and later accept any unknown -Wno-* option and only
546 warn about it if there is another warning in the source file.
547
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300548 Example::
549
Michal Marek8417da6f2011-05-02 12:51:15 +0200550 KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
551
552 In the above example, -Wno-unused-but-set-variable will be added to
553 KBUILD_CFLAGS only if gcc really accepts it.
554
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100555 cc-ifversion
Masahiro Yamada6dcb4e52014-12-25 14:31:27 +0900556 cc-ifversion tests the version of $(CC) and equals the fourth parameter
557 if version expression is true, or the fifth (if given) if the version
558 expression is false.
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100559
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300560 Example::
561
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100562 #fs/reiserfs/Makefile
Sam Ravnborgf77bf012007-10-15 22:25:06 +0200563 ccflags-y := $(call cc-ifversion, -lt, 0402, -O1)
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100564
Sam Ravnborgf77bf012007-10-15 22:25:06 +0200565 In this example, ccflags-y will be assigned the value -O1 if the
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100566 $(CC) version is less than 4.2.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700567 cc-ifversion takes all the shell operators:
Sam Ravnborg20a468b2006-01-22 13:34:15 +0100568 -eq, -ne, -lt, -le, -gt, and -ge
569 The third parameter may be a text as in this example, but it may also
570 be an expanded variable or a macro.
571
Sam Ravnborg910b4042007-10-19 21:46:01 +0200572 cc-cross-prefix
Geert Uytterhoeven631bcfb2007-10-21 19:55:00 +0200573 cc-cross-prefix is used to check if there exists a $(CC) in path with
Sam Ravnborg910b4042007-10-19 21:46:01 +0200574 one of the listed prefixes. The first prefix where there exist a
575 prefix$(CC) in the PATH is returned - and if no prefix$(CC) is found
576 then nothing is returned.
577 Additional prefixes are separated by a single space in the
578 call of cc-cross-prefix.
Geert Uytterhoeven631bcfb2007-10-21 19:55:00 +0200579 This functionality is useful for architecture Makefiles that try
580 to set CROSS_COMPILE to well-known values but may have several
Sam Ravnborg910b4042007-10-19 21:46:01 +0200581 values to select between.
Geert Uytterhoeven631bcfb2007-10-21 19:55:00 +0200582 It is recommended only to try to set CROSS_COMPILE if it is a cross
583 build (host arch is different from target arch). And if CROSS_COMPILE
Sam Ravnborg910b4042007-10-19 21:46:01 +0200584 is already set then leave it with the old value.
585
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300586 Example::
587
Sam Ravnborg910b4042007-10-19 21:46:01 +0200588 #arch/m68k/Makefile
589 ifneq ($(SUBARCH),$(ARCH))
590 ifeq ($(CROSS_COMPILE),)
591 CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu-)
592 endif
593 endif
594
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03005953.12 $(LD) support functions
596----------------------------
Sam Ravnborg691ef3e2009-09-19 10:31:45 +0200597
598 ld-option
599 ld-option is used to check if $(LD) supports the supplied option.
600 ld-option takes two options as arguments.
601 The second argument is an optional option that can be used if the
602 first option is not supported by $(LD).
603
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300604 Example::
605
Sam Ravnborg691ef3e2009-09-19 10:31:45 +0200606 #Makefile
Antony Pavlov5b83df22013-04-03 18:42:33 +0400607 LDFLAGS_vmlinux += $(call ld-option, -X)
Sam Ravnborg691ef3e2009-09-19 10:31:45 +0200608
Lukas Bulwahneb38f372020-10-13 16:48:05 -07006093.13 Script invocation
610----------------------
611
612 Make rules may invoke scripts to build the kernel. The rules shall
613 always provide the appropriate interpreter to execute the script. They
614 shall not rely on the execute bits being set, and shall not invoke the
615 script directly. For the convenience of manual script invocation, such
616 as invoking ./scripts/checkpatch.pl, it is recommended to set execute
617 bits on the scripts nonetheless.
618
619 Kbuild provides variables $(CONFIG_SHELL), $(AWK), $(PERL),
620 $(PYTHON) and $(PYTHON3) to refer to interpreters for the respective
621 scripts.
622
623 Example::
624
625 #Makefile
626 cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \
627 $(KERNELRELEASE)
Sam Ravnborg691ef3e2009-09-19 10:31:45 +0200628
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03006294 Host Program support
630======================
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632Kbuild supports building executables on the host for use during the
633compilation stage.
634Two steps are required in order to use a host executable.
635
636The first step is to tell kbuild that a host program exists. This is
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900637done utilising the variable "hostprogs".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639The second step is to add an explicit dependency to the executable.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700640This can be done in two ways. Either add the dependency in a rule,
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900641or utilise the variable "always-y".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642Both possibilities are described in the following.
643
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03006444.1 Simple Host Program
645-----------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 In some cases there is a need to compile and run a program on the
648 computer where the build is running.
649 The following line tells kbuild that the program bin2hex shall be
650 built on the build host.
651
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300652 Example::
653
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900654 hostprogs := bin2hex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 Kbuild assumes in the above example that bin2hex is made from a single
657 c-source file named bin2hex.c located in the same directory as
658 the Makefile.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700659
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03006604.2 Composite Host Programs
661---------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 Host programs can be made up based on composite objects.
664 The syntax used to define composite objects for host programs is
665 similar to the syntax used for kernel objects.
Matt LaPlante5d3f0832006-11-30 05:21:10 +0100666 $(<executable>-objs) lists all objects used to link the final
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 executable.
668
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300669 Example::
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 #scripts/lxdialog/Makefile
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900672 hostprogs := lxdialog
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 lxdialog-objs := checklist.o lxdialog.o
674
675 Objects with extension .o are compiled from the corresponding .c
Jan Engelhardta07f6032006-07-27 22:14:29 +0200676 files. In the above example, checklist.c is compiled to checklist.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 and lxdialog.c is compiled to lxdialog.o.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300678
Jan Engelhardta07f6032006-07-27 22:14:29 +0200679 Finally, the two .o files are linked to the executable, lxdialog.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 Note: The syntax <executable>-y is not permitted for host-programs.
681
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03006824.3 Using C++ for host programs
683-------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 kbuild offers support for host programs written in C++. This was
686 introduced solely to support kconfig, and is not recommended
687 for general use.
688
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300689 Example::
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 #scripts/kconfig/Makefile
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900692 hostprogs := qconf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 qconf-cxxobjs := qconf.o
694
695 In the example above the executable is composed of the C++ file
696 qconf.cc - identified by $(qconf-cxxobjs).
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700697
Geert Uytterhoeven39fed702014-08-08 17:23:10 +0200698 If qconf is composed of a mixture of .c and .cc files, then an
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 additional line can be used to identify this.
700
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300701 Example::
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 #scripts/kconfig/Makefile
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900704 hostprogs := qconf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 qconf-cxxobjs := qconf.o
706 qconf-objs := check.o
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700707
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03007084.4 Controlling compiler options for host programs
709--------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 When compiling host programs, it is possible to set specific flags.
712 The programs will always be compiled utilising $(HOSTCC) passed
Laura Abbott96f14fe2018-07-09 17:45:58 -0700713 the options specified in $(KBUILD_HOSTCFLAGS).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 To set flags that will take effect for all host programs created
Jan Engelhardta07f6032006-07-27 22:14:29 +0200715 in that Makefile, use the variable HOST_EXTRACFLAGS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300717 Example::
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 #scripts/lxdialog/Makefile
720 HOST_EXTRACFLAGS += -I/usr/include/ncurses
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 To set specific flags for a single file the following construction
723 is used:
724
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300725 Example::
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 #arch/ppc64/boot/Makefile
728 HOSTCFLAGS_piggyback.o := -DKERNELBASE=$(KERNELBASE)
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 It is also possible to specify additional options to the linker.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700731
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300732 Example::
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 #scripts/kconfig/Makefile
Michal Suchanekc86b1f92018-08-16 19:05:55 +0200735 HOSTLDLIBS_qconf := -L$(QTDIR)/lib
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jan Engelhardta07f6032006-07-27 22:14:29 +0200737 When linking qconf, it will be passed the extra option
738 "-L$(QTDIR)/lib".
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700739
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03007404.5 When host programs are actually built
741-----------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 Kbuild will only build host-programs when they are referenced
744 as a prerequisite.
745 This is possible in two ways:
746
747 (1) List the prerequisite explicitly in a special rule.
748
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300749 Example::
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 #drivers/pci/Makefile
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900752 hostprogs := gen-devlist
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
754 ( cd $(obj); ./gen-devlist ) < $<
755
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700756 The target $(obj)/devlist.h will not be built before
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 $(obj)/gen-devlist is updated. Note that references to
758 the host programs in special rules must be prefixed with $(obj).
759
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900760 (2) Use always-y
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 When there is no suitable special rule, and the host program
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900763 shall be built when a makefile is entered, the always-y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 variable shall be used.
765
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300766 Example::
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 #scripts/lxdialog/Makefile
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900769 hostprogs := lxdialog
770 always-y := $(hostprogs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Masahiro Yamadafaabed22020-08-01 21:27:18 +0900772 Kbuild provides the following shorthand for this:
773
774 hostprogs-always-y := lxdialog
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 This will tell kbuild to build lxdialog even if not referenced in
777 any rule.
778
Masahiro Yamadae079a082020-04-29 12:45:17 +09007795 Userspace Program support
780===========================
781
782Just like host programs, Kbuild also supports building userspace executables
783for the target architecture (i.e. the same architecture as you are building
784the kernel for).
785
786The syntax is quite similar. The difference is to use "userprogs" instead of
787"hostprogs".
788
7895.1 Simple Userspace Program
790----------------------------
791
792 The following line tells kbuild that the program bpf-direct shall be
793 built for the target architecture.
794
795 Example::
796
797 userprogs := bpf-direct
798
799 Kbuild assumes in the above example that bpf-direct is made from a
800 single C source file named bpf-direct.c located in the same directory
801 as the Makefile.
802
8035.2 Composite Userspace Programs
804--------------------------------
805
806 Userspace programs can be made up based on composite objects.
807 The syntax used to define composite objects for userspace programs is
808 similar to the syntax used for kernel objects.
809 $(<executable>-objs) lists all objects used to link the final
810 executable.
811
812 Example::
813
814 #samples/seccomp/Makefile
815 userprogs := bpf-fancy
816 bpf-fancy-objs := bpf-fancy.o bpf-helper.o
817
818 Objects with extension .o are compiled from the corresponding .c
819 files. In the above example, bpf-fancy.c is compiled to bpf-fancy.o
820 and bpf-helper.c is compiled to bpf-helper.o.
821
822 Finally, the two .o files are linked to the executable, bpf-fancy.
823 Note: The syntax <executable>-y is not permitted for userspace programs.
824
8255.3 Controlling compiler options for userspace programs
826-------------------------------------------------------
827
828 When compiling userspace programs, it is possible to set specific flags.
829 The programs will always be compiled utilising $(CC) passed
830 the options specified in $(KBUILD_USERCFLAGS).
831 To set flags that will take effect for all userspace programs created
832 in that Makefile, use the variable userccflags.
833
834 Example::
835
836 # samples/seccomp/Makefile
837 userccflags += -I usr/include
838
839 To set specific flags for a single file the following construction
840 is used:
841
842 Example::
843
844 bpf-helper-userccflags += -I user/include
845
846 It is also possible to specify additional options to the linker.
847
848 Example::
849
850 # net/bpfilter/Makefile
851 bpfilter_umh-userldflags += -static
852
853 When linking bpfilter_umh, it will be passed the extra option -static.
854
8555.4 When userspace programs are actually built
856----------------------------------------------
857
Masahiro Yamadafaabed22020-08-01 21:27:18 +0900858 Kbuild builds userspace programs only when told to do so.
859 There are two ways to do this.
860
861 (1) Add it as the prerequisite of another file
862
863 Example::
864
865 #net/bpfilter/Makefile
866 userprogs := bpfilter_umh
867 $(obj)/bpfilter_umh_blob.o: $(obj)/bpfilter_umh
868
869 $(obj)/bpfilter_umh is built before $(obj)/bpfilter_umh_blob.o
870
871 (2) Use always-y
872
873 Example::
874
875 userprogs := binderfs_example
876 always-y := $(userprogs)
877
878 Kbuild provides the following shorthand for this:
879
880 userprogs-always-y := binderfs_example
881
882 This will tell Kbuild to build binderfs_example when it visits this
883 Makefile.
Masahiro Yamadae079a082020-04-29 12:45:17 +0900884
8856 Kbuild clean infrastructure
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300886=============================
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Jan Engelhardta07f6032006-07-27 22:14:29 +0200888"make clean" deletes most generated files in the obj tree where the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889is compiled. This includes generated files such as host programs.
Masahiro Yamada5f2fb522020-02-02 01:49:24 +0900890Kbuild knows targets listed in $(hostprogs), $(always-y), $(always-m),
891$(always-), $(extra-y), $(extra-) and $(targets). They are all deleted
892during "make clean". Files matching the patterns "*.[oas]", "*.ko", plus
893some additional files generated by kbuild are deleted all over the kernel
894source tree when "make clean" is executed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Masahiro Yamada1634f2b2019-08-25 10:31:27 +0900896Additional files or directories can be specified in kbuild makefiles by use of
897$(clean-files).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300899 Example::
900
Michal Marek976591812015-01-08 14:45:50 +0100901 #lib/Makefile
902 clean-files := crc32table.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Jeffrey Rogersbd55daf2015-06-06 17:18:45 -0400904When executing "make clean", the file "crc32table.h" will be deleted.
905Kbuild will assume files to be in the same relative directory as the
Michal Marek976591812015-01-08 14:45:50 +0100906Makefile, except if prefixed with $(objtree).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Masahiro Yamada1634f2b2019-08-25 10:31:27 +0900908To exclude certain files or directories from make clean, use the
909$(no-clean-files) variable.
Michal Marekef8ff892010-03-09 16:00:20 +0100910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911Usually kbuild descends down in subdirectories due to "obj-* := dir/",
912but in the architecture makefiles where the kbuild infrastructure
913is not sufficient this sometimes needs to be explicit.
914
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300915 Example::
916
Wanlong Gao25eb6502011-06-13 17:53:53 +0800917 #arch/x86/boot/Makefile
Masahiro Yamadaeabc8bc2020-02-27 02:44:58 +0900918 subdir- := compressed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920The above assignment instructs kbuild to descend down in the
921directory compressed/ when "make clean" is executed.
922
Geert Uytterhoeven39fed702014-08-08 17:23:10 +0200923To support the clean infrastructure in the Makefiles that build the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924final bootimage there is an optional target named archclean:
925
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300926 Example::
927
Wanlong Gao25eb6502011-06-13 17:53:53 +0800928 #arch/x86/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 archclean:
Wanlong Gao25eb6502011-06-13 17:53:53 +0800930 $(Q)$(MAKE) $(clean)=arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Wanlong Gao25eb6502011-06-13 17:53:53 +0800932When "make clean" is executed, make will descend down in arch/x86/boot,
933and clean as usual. The Makefile located in arch/x86/boot/ may use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934the subdir- trick to descend further down.
935
936Note 1: arch/$(ARCH)/Makefile cannot use "subdir-", because that file is
937included in the top level makefile, and the kbuild infrastructure
938is not operational at that point.
939
940Note 2: All directories listed in core-y, libs-y, drivers-y and net-y will
941be visited during "make clean".
942
Masahiro Yamadae079a082020-04-29 12:45:17 +09009437 Architecture Makefiles
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300944========================
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946The top level Makefile sets up the environment and does the preparation,
947before starting to descend down in the individual directories.
Jan Engelhardta07f6032006-07-27 22:14:29 +0200948The top level makefile contains the generic part, whereas
949arch/$(ARCH)/Makefile contains what is required to set up kbuild
950for said architecture.
951To do so, arch/$(ARCH)/Makefile sets up a number of variables and defines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952a few targets.
953
Jan Engelhardta07f6032006-07-27 22:14:29 +0200954When kbuild executes, the following steps are followed (roughly):
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300955
Jan Engelhardta07f6032006-07-27 22:14:29 +02009561) Configuration of the kernel => produce .config
Linus Torvalds1da177e2005-04-16 15:20:36 -07009572) Store kernel version in include/linux/version.h
Geert Uytterhoevenb22ae402014-08-08 17:23:07 +02009583) Updating all other prerequisites to the target prepare:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 - Additional prerequisites are specified in arch/$(ARCH)/Makefile
Geert Uytterhoevenb22ae402014-08-08 17:23:07 +02009604) Recursively descend down in all directories listed in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 init-* core* drivers-* net-* libs-* and build all targets.
Jan Engelhardta07f6032006-07-27 22:14:29 +0200962 - The values of the above variables are expanded in arch/$(ARCH)/Makefile.
Geert Uytterhoevenb22ae402014-08-08 17:23:07 +02009635) All object files are then linked and the resulting file vmlinux is
Jan Engelhardta07f6032006-07-27 22:14:29 +0200964 located at the root of the obj tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 The very first objects linked are listed in head-y, assigned by
966 arch/$(ARCH)/Makefile.
Geert Uytterhoevenb22ae402014-08-08 17:23:07 +02009676) Finally, the architecture-specific part does any required post processing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 and builds the final bootimage.
969 - This includes building boot records
Randy Dunlap5c811e52007-02-17 20:03:14 +0100970 - Preparing initrd images and the like
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972
Masahiro Yamadae079a082020-04-29 12:45:17 +09009737.1 Set variables to tweak the build to the architecture
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300974--------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Masahiro Yamadac0901572020-06-02 02:03:28 +0900976 KBUILD_LDFLAGS
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300977 Generic $(LD) options
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 Flags used for all invocations of the linker.
980 Often specifying the emulation is sufficient.
981
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300982 Example::
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 #arch/s390/Makefile
Masahiro Yamadac0901572020-06-02 02:03:28 +0900985 KBUILD_LDFLAGS := -m elf_s390
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300986
Sam Ravnborgf77bf012007-10-15 22:25:06 +0200987 Note: ldflags-y can be used to further customise
Randy Dunlapb26ff482020-08-28 10:26:26 -0700988 the flags used. See section 3.7.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -0700989
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300990 LDFLAGS_vmlinux
991 Options for $(LD) when linking vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 LDFLAGS_vmlinux is used to specify additional flags to pass to
Jan Engelhardta07f6032006-07-27 22:14:29 +0200994 the linker when linking the final vmlinux image.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 LDFLAGS_vmlinux uses the LDFLAGS_$@ support.
996
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -0300997 Example::
998
Wanlong Gao25eb6502011-06-13 17:53:53 +0800999 #arch/x86/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 LDFLAGS_vmlinux := -e stext
1001
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001002 OBJCOPYFLAGS
1003 objcopy flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 When $(call if_changed,objcopy) is used to translate a .o file,
Jan Engelhardta07f6032006-07-27 22:14:29 +02001006 the flags specified in OBJCOPYFLAGS will be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 $(call if_changed,objcopy) is often used to generate raw binaries on
1008 vmlinux.
1009
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001010 Example::
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 #arch/s390/Makefile
1013 OBJCOPYFLAGS := -O binary
1014
1015 #arch/s390/boot/Makefile
1016 $(obj)/image: vmlinux FORCE
1017 $(call if_changed,objcopy)
1018
Jan Engelhardta07f6032006-07-27 22:14:29 +02001019 In this example, the binary $(obj)/image is a binary version of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 vmlinux. The usage of $(call if_changed,xxx) will be described later.
1021
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001022 KBUILD_AFLAGS
Masahiro Yamada5ef87262019-07-13 11:45:58 +09001023 Assembler flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 Default value - see top level Makefile
1026 Append or modify as required per architecture.
1027
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001028 Example::
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 #arch/sparc64/Makefile
Sam Ravnborg222d3942007-10-15 21:59:31 +02001031 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001033 KBUILD_CFLAGS
1034 $(CC) compiler flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 Default value - see top level Makefile
1037 Append or modify as required per architecture.
1038
Sam Ravnborga0f97e02007-10-14 22:21:35 +02001039 Often, the KBUILD_CFLAGS variable depends on the configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001041 Example::
1042
Paul Bolleff4eb042013-04-08 12:51:25 +02001043 #arch/x86/boot/compressed/Makefile
1044 cflags-$(CONFIG_X86_32) := -march=i386
1045 cflags-$(CONFIG_X86_64) := -mcmodel=small
Sam Ravnborga0f97e02007-10-14 22:21:35 +02001046 KBUILD_CFLAGS += $(cflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 Many arch Makefiles dynamically run the target C compiler to
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001049 probe supported options::
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Wanlong Gao25eb6502011-06-13 17:53:53 +08001051 #arch/x86/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 ...
1054 cflags-$(CONFIG_MPENTIUMII) += $(call cc-option,\
1055 -march=pentium2,-march=i686)
1056 ...
1057 # Disable unit-at-a-time mode ...
Sam Ravnborga0f97e02007-10-14 22:21:35 +02001058 KBUILD_CFLAGS += $(call cc-option,-fno-unit-at-a-time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 ...
1060
1061
Jan Engelhardta07f6032006-07-27 22:14:29 +02001062 The first example utilises the trick that a config option expands
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 to 'y' when selected.
1064
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001065 KBUILD_AFLAGS_KERNEL
Masahiro Yamada5ef87262019-07-13 11:45:58 +09001066 Assembler options specific for built-in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Sam Ravnborg80c00ba2010-07-28 19:11:27 +02001068 $(KBUILD_AFLAGS_KERNEL) contains extra C compiler flags used to compile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 resident kernel code.
1070
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001071 KBUILD_AFLAGS_MODULE
Masahiro Yamada5ef87262019-07-13 11:45:58 +09001072 Assembler options specific for modules
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001074 $(KBUILD_AFLAGS_MODULE) is used to add arch-specific options that
Masahiro Yamada5ef87262019-07-13 11:45:58 +09001075 are used for assembler.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001076
Masahiro Yamada2eebb7a2020-03-12 07:50:44 +09001077 From commandline AFLAGS_MODULE shall be used (see kbuild.rst).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001079 KBUILD_CFLAGS_KERNEL
1080 $(CC) options specific for built-in
Sam Ravnborg80c00ba2010-07-28 19:11:27 +02001081
1082 $(KBUILD_CFLAGS_KERNEL) contains extra C compiler flags used to compile
1083 resident kernel code.
1084
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001085 KBUILD_CFLAGS_MODULE
1086 Options for $(CC) when building modules
Sam Ravnborg65881692010-07-28 17:33:09 +02001087
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001088 $(KBUILD_CFLAGS_MODULE) is used to add arch-specific options that
Sam Ravnborg65881692010-07-28 17:33:09 +02001089 are used for $(CC).
Masahiro Yamada2eebb7a2020-03-12 07:50:44 +09001090 From commandline CFLAGS_MODULE shall be used (see kbuild.rst).
Sam Ravnborg65881692010-07-28 17:33:09 +02001091
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001092 KBUILD_LDFLAGS_MODULE
1093 Options for $(LD) when linking modules
Sam Ravnborg65881692010-07-28 17:33:09 +02001094
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001095 $(KBUILD_LDFLAGS_MODULE) is used to add arch-specific options
Sam Ravnborg65881692010-07-28 17:33:09 +02001096 used when linking modules. This is often a linker script.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001097
Masahiro Yamada2eebb7a2020-03-12 07:50:44 +09001098 From commandline LDFLAGS_MODULE shall be used (see kbuild.rst).
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001099
Masahiro Yamada888f0c32019-08-15 01:06:21 +09001100 KBUILD_LDS
1101
1102 The linker script with full path. Assigned by the top-level Makefile.
1103
Masahiro Yamada10df0632019-08-15 01:06:22 +09001104 KBUILD_LDS_MODULE
1105
1106 The module linker script with full path. Assigned by the top-level
1107 Makefile and additionally by the arch Makefile.
1108
Masahiro Yamada888f0c32019-08-15 01:06:21 +09001109 KBUILD_VMLINUX_OBJS
1110
1111 All object files for vmlinux. They are linked to vmlinux in the same
1112 order as listed in KBUILD_VMLINUX_OBJS.
1113
1114 KBUILD_VMLINUX_LIBS
1115
1116 All .a "lib" files for vmlinux. KBUILD_VMLINUX_OBJS and
1117 KBUILD_VMLINUX_LIBS together specify all the object files used to
1118 link vmlinux.
Michal Marek61754c12015-07-01 17:19:30 +02001119
Masahiro Yamadae079a082020-04-29 12:45:17 +090011207.2 Add prerequisites to archheaders
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001121------------------------------------
H. Peter Anvin052ad272011-11-17 13:17:35 -08001122
1123 The archheaders: rule is used to generate header files that
Linus Torvalds39ceda52019-07-12 16:03:16 -07001124 may be installed into user space by "make header_install".
H. Peter Anvin052ad272011-11-17 13:17:35 -08001125
1126 It is run before "make archprepare" when run on the
1127 architecture itself.
1128
1129
Masahiro Yamadae079a082020-04-29 12:45:17 +090011307.3 Add prerequisites to archprepare
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001131------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Jan Engelhardta07f6032006-07-27 22:14:29 +02001133 The archprepare: rule is used to list prerequisites that need to be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 built before starting to descend down in the subdirectories.
Jan Engelhardta07f6032006-07-27 22:14:29 +02001135 This is usually used for header files containing assembler constants.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001137 Example::
1138
Sam Ravnborg5bb78262005-09-11 22:30:22 +02001139 #arch/arm/Makefile
1140 archprepare: maketools
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Jan Engelhardta07f6032006-07-27 22:14:29 +02001142 In this example, the file target maketools will be processed
Sam Ravnborg5bb78262005-09-11 22:30:22 +02001143 before descending down in the subdirectories.
Randy Dunlapb26ff482020-08-28 10:26:26 -07001144 See also chapter XXX-TODO that describes how kbuild supports
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 generating offset header files.
1146
1147
Masahiro Yamadae079a082020-04-29 12:45:17 +090011487.4 List directories to visit when descending
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001149---------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 An arch Makefile cooperates with the top Makefile to define variables
1152 which specify how to build the vmlinux file. Note that there is no
1153 corresponding arch-specific section for modules; the module-building
1154 machinery is all architecture-independent.
1155
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001156
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001157 head-y, init-y, core-y, libs-y, drivers-y, net-y
1158 $(head-y) lists objects to be linked first in vmlinux.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001160 $(libs-y) lists directories where a lib.a archive can be located.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001162 The rest list directories where a built-in.a object file can be
1163 located.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001165 $(init-y) objects will be located after $(head-y).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001167 Then the rest follows in this order:
1168
1169 $(core-y), $(libs-y), $(drivers-y) and $(net-y).
1170
1171 The top level Makefile defines values for all generic directories,
1172 and arch/$(ARCH)/Makefile only adds architecture-specific
1173 directories.
1174
1175 Example::
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 #arch/sparc64/Makefile
1178 core-y += arch/sparc64/kernel/
1179 libs-y += arch/sparc64/prom/ arch/sparc64/lib/
1180 drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/
1181
1182
Masahiro Yamadae079a082020-04-29 12:45:17 +090011837.5 Architecture-specific boot images
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001184-------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 An arch Makefile specifies goals that take the vmlinux file, compress
1187 it, wrap it in bootstrapping code, and copy the resulting files
1188 somewhere. This includes various kinds of installation commands.
1189 The actual goals are not standardized across architectures.
1190
1191 It is common to locate any additional processing in a boot/
1192 directory below arch/$(ARCH)/.
1193
1194 Kbuild does not provide any smart way to support building a
1195 target specified in boot/. Therefore arch/$(ARCH)/Makefile shall
1196 call make manually to build a target in boot/.
1197
1198 The recommended approach is to include shortcuts in
1199 arch/$(ARCH)/Makefile, and use the full path when calling down
1200 into the arch/$(ARCH)/boot/Makefile.
1201
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001202 Example::
1203
Wanlong Gao25eb6502011-06-13 17:53:53 +08001204 #arch/x86/Makefile
1205 boot := arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 bzImage: vmlinux
1207 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
1208
1209 "$(Q)$(MAKE) $(build)=<dir>" is the recommended way to invoke
1210 make in a subdirectory.
1211
Randy Dunlap5c811e52007-02-17 20:03:14 +01001212 There are no rules for naming architecture-specific targets,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 but executing "make help" will list all relevant targets.
Jan Engelhardta07f6032006-07-27 22:14:29 +02001214 To support this, $(archhelp) must be defined.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001216 Example::
1217
Wanlong Gao25eb6502011-06-13 17:53:53 +08001218 #arch/x86/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 define archhelp
1220 echo '* bzImage - Image (arch/$(ARCH)/boot/bzImage)'
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001221 endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 When make is executed without arguments, the first goal encountered
1224 will be built. In the top level Makefile the first goal present
1225 is all:.
Jan Engelhardta07f6032006-07-27 22:14:29 +02001226 An architecture shall always, per default, build a bootable image.
1227 In "make help", the default goal is highlighted with a '*'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 Add a new prerequisite to all: to select a default goal different
1229 from vmlinux.
1230
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001231 Example::
1232
Wanlong Gao25eb6502011-06-13 17:53:53 +08001233 #arch/x86/Makefile
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001234 all: bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 When "make" is executed without arguments, bzImage will be built.
1237
Masahiro Yamadae079a082020-04-29 12:45:17 +090012387.6 Building non-kbuild targets
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001239-------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 extra-y
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001242 extra-y specifies additional targets created in the current
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001243 directory, in addition to any targets specified by `obj-*`.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 Listing all targets in extra-y is required for two purposes:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 1) Enable kbuild to check changes in command lines
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 - When $(call if_changed,xxx) is used
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 2) kbuild knows what files to delete during "make clean"
1252
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001253 Example::
1254
Wanlong Gao25eb6502011-06-13 17:53:53 +08001255 #arch/x86/kernel/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 extra-y := head.o init_task.o
1257
Jan Engelhardta07f6032006-07-27 22:14:29 +02001258 In this example, extra-y is used to list object files that
Nicholas Pigginf49821e2018-02-11 00:25:04 +10001259 shall be built, but shall not be linked as part of built-in.a.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Masahiro Yamadae079a082020-04-29 12:45:17 +090012617.7 Commands useful for building a boot image
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001262---------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001264 Kbuild provides a few macros that are useful when building a
1265 boot image.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 if_changed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if_changed is the infrastructure used for the following commands.
1269
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001270 Usage::
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 target: source(s) FORCE
Geert Uytterhoevenef80f0a2014-08-08 17:23:08 +02001273 $(call if_changed,ld/objcopy/gzip/...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Jan Engelhardta07f6032006-07-27 22:14:29 +02001275 When the rule is evaluated, it is checked to see if any files
Randy Dunlap5c811e52007-02-17 20:03:14 +01001276 need an update, or the command line has changed since the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 invocation. The latter will force a rebuild if any options
1278 to the executable have changed.
1279 Any target that utilises if_changed must be listed in $(targets),
1280 otherwise the command line check will fail, and the target will
1281 always be built.
1282 Assignments to $(targets) are without $(obj)/ prefix.
1283 if_changed may be used in conjunction with custom commands as
Randy Dunlapb26ff482020-08-28 10:26:26 -07001284 defined in 7.8 "Custom kbuild commands".
Paolo 'Blaisorblade' Giarrusso49490572005-07-28 17:56:17 +02001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 Note: It is a typical mistake to forget the FORCE prerequisite.
Paolo 'Blaisorblade' Giarrusso49490572005-07-28 17:56:17 +02001287 Another common pitfall is that whitespace is sometimes
1288 significant; for instance, the below will fail (note the extra space
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001289 after the comma)::
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001291 target: source(s) FORCE
1292
1293 **WRONG!** $(call if_changed, ld/objcopy/gzip/...)
1294
1295 Note:
1296 if_changed should not be used more than once per target.
Dirk Goudersbb819552018-07-18 11:13:36 +02001297 It stores the executed command in a corresponding .cmd
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001298
Dirk Goudersbb819552018-07-18 11:13:36 +02001299 file and multiple calls would result in overwrites and
1300 unwanted results when the target is up to date and only the
1301 tests on changed commands trigger execution of commands.
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 ld
Jan Engelhardta07f6032006-07-27 22:14:29 +02001304 Link target. Often, LDFLAGS_$@ is used to set specific options to ld.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001305
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001306 Example::
1307
Wanlong Gao25eb6502011-06-13 17:53:53 +08001308 #arch/x86/boot/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 LDFLAGS_bootsect := -Ttext 0x0 -s --oformat binary
1310 LDFLAGS_setup := -Ttext 0x0 -s --oformat binary -e begtext
1311
1312 targets += setup setup.o bootsect bootsect.o
1313 $(obj)/setup $(obj)/bootsect: %: %.o FORCE
1314 $(call if_changed,ld)
1315
Jan Engelhardta07f6032006-07-27 22:14:29 +02001316 In this example, there are two possible targets, requiring different
1317 options to the linker. The linker options are specified using the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 LDFLAGS_$@ syntax - one for each potential target.
Matt LaPlante5d3f0832006-11-30 05:21:10 +01001319 $(targets) are assigned all potential targets, by which kbuild knows
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 the targets and will:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 1) check for commandline changes
1323 2) delete target during make clean
1324
1325 The ": %: %.o" part of the prerequisite is a shorthand that
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001326 frees us from listing the setup.o and bootsect.o files.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001327
1328 Note:
1329 It is a common mistake to forget the "targets :=" assignment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 resulting in the target file being recompiled for no
1331 obvious reason.
1332
Cao jind87e47e2017-10-19 11:17:05 +08001333 objcopy
1334 Copy binary. Uses OBJCOPYFLAGS usually specified in
1335 arch/$(ARCH)/Makefile.
1336 OBJCOPYFLAGS_$@ may be used to set additional options.
1337
1338 gzip
1339 Compress target. Use maximum compression to compress target.
1340
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001341 Example::
1342
Cao jind87e47e2017-10-19 11:17:05 +08001343 #arch/x86/boot/compressed/Makefile
1344 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
1345 $(call if_changed,gzip)
1346
Dirk Brandewieaab94332010-12-22 11:57:26 -08001347 dtc
Masahiro Yamadac1410562014-06-10 16:36:14 +09001348 Create flattened device tree blob object suitable for linking
Dirk Brandewieaab94332010-12-22 11:57:26 -08001349 into vmlinux. Device tree blobs linked into vmlinux are placed
1350 in an init section in the image. Platform code *must* copy the
1351 blob to non-init memory prior to calling unflatten_device_tree().
1352
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001353 To use this command, simply add `*.dtb` into obj-y or targets, or make
1354 some other target depend on `%.dtb`
Stephen Warren90b335f2012-11-27 16:29:10 -07001355
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001356 A central rule exists to create `$(obj)/%.dtb` from `$(src)/%.dts`;
Stephen Warren90b335f2012-11-27 16:29:10 -07001357 architecture Makefiles do no need to explicitly write out that rule.
1358
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001359 Example::
1360
Stephen Warren90b335f2012-11-27 16:29:10 -07001361 targets += $(dtb-y)
Stephen Warren90b335f2012-11-27 16:29:10 -07001362 DTC_FLAGS ?= -p 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Masahiro Yamadae079a082020-04-29 12:45:17 +090013647.8 Custom kbuild commands
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001365--------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Jan Engelhardta07f6032006-07-27 22:14:29 +02001367 When kbuild is executing with KBUILD_VERBOSE=0, then only a shorthand
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 of a command is normally displayed.
1369 To enable this behaviour for custom commands kbuild requires
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001370 two variables to be set::
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001372 quiet_cmd_<command> - what shall be echoed
1373 cmd_<command> - the command to execute
1374
1375 Example::
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 #
1378 quiet_cmd_image = BUILD $@
1379 cmd_image = $(obj)/tools/build $(BUILDFLAGS) \
1380 $(obj)/vmlinux.bin > $@
1381
1382 targets += bzImage
1383 $(obj)/bzImage: $(obj)/vmlinux.bin $(obj)/tools/build FORCE
1384 $(call if_changed,image)
1385 @echo 'Kernel: $@ is ready'
1386
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001387 When updating the $(obj)/bzImage target, the line:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001389 BUILD arch/x86/boot/bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 will be displayed with "make KBUILD_VERBOSE=0".
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Masahiro Yamadae079a082020-04-29 12:45:17 +090013947.9 Preprocessing linker scripts
Masahiro Yamadaff4634e2020-04-23 10:49:19 +09001395--------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Jan Engelhardta07f6032006-07-27 22:14:29 +02001397 When the vmlinux image is built, the linker script
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 arch/$(ARCH)/kernel/vmlinux.lds is used.
1399 The script is a preprocessed variant of the file vmlinux.lds.S
1400 located in the same directory.
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001401 kbuild knows .lds files and includes a rule `*lds.S` -> `*lds`.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001402
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001403 Example::
1404
Wanlong Gao25eb6502011-06-13 17:53:53 +08001405 #arch/x86/kernel/Makefile
Masahiro Yamadafaa7bdd2020-02-02 01:49:23 +09001406 extra-y := vmlinux.lds
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 #Makefile
1409 export CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH)
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001410
Masahiro Yamadafaa7bdd2020-02-02 01:49:23 +09001411 The assignment to extra-y is used to tell kbuild to build the
Jan Engelhardta07f6032006-07-27 22:14:29 +02001412 target vmlinux.lds.
1413 The assignment to $(CPPFLAGS_vmlinux.lds) tells kbuild to use the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 specified options when building the target vmlinux.lds.
Bryce Harrington39e6e9c2006-09-20 12:43:37 -07001415
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001416 When building the `*.lds` target, kbuild uses the variables::
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001418 KBUILD_CPPFLAGS : Set in top-level Makefile
1419 cppflags-y : May be set in the kbuild makefile
1420 CPPFLAGS_$(@F) : Target-specific flags.
1421 Note that the full filename is used in this
1422 assignment.
1423
1424 The kbuild infrastructure for `*lds` files is used in several
Randy Dunlap5c811e52007-02-17 20:03:14 +01001425 architecture-specific files.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Masahiro Yamadae079a082020-04-29 12:45:17 +090014277.10 Generic header files
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001428-------------------------
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001429
1430 The directory include/asm-generic contains the header files
1431 that may be shared between individual architectures.
1432 The recommended approach how to use a generic header file is
1433 to list the file in the Kbuild file.
Randy Dunlapb26ff482020-08-28 10:26:26 -07001434 See "8.2 generic-y" for further info on syntax etc.
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001435
Masahiro Yamadae079a082020-04-29 12:45:17 +090014367.11 Post-link pass
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001437-------------------
Nicholas Pigginfbe6e372016-08-24 22:29:21 +10001438
1439 If the file arch/xxx/Makefile.postlink exists, this makefile
1440 will be invoked for post-link objects (vmlinux and modules.ko)
1441 for architectures to run post-link passes on. Must also handle
1442 the clean target.
1443
1444 This pass runs after kallsyms generation. If the architecture
1445 needs to modify symbol locations, rather than manipulate the
1446 kallsyms, it may be easier to add another postlink target for
1447 .tmp_vmlinux? targets to be called from link-vmlinux.sh.
1448
1449 For example, powerpc uses this to check relocation sanity of
1450 the linked vmlinux file.
1451
Masahiro Yamadae079a082020-04-29 12:45:17 +090014528 Kbuild syntax for exported headers
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001453------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001455The kernel includes a set of headers that is exported to userspace.
Nicolas Kaiserc95940f2010-08-05 11:23:11 -07001456Many headers can be exported as-is but other headers require a
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001457minimal pre-processing before they are ready for user-space.
1458The pre-processing does:
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001459
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001460- drop kernel-specific annotations
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001461- drop include of compiler.h
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001462- drop all sections that are kernel internal (guarded by `ifdef __KERNEL__`)
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001463
Nicolas Dichtelfcc84872017-03-27 14:20:15 +02001464All headers under include/uapi/, include/generated/uapi/,
Nicolas Dichtel61562f982017-03-27 14:20:16 +02001465arch/<arch>/include/uapi/ and arch/<arch>/include/generated/uapi/
Nicolas Dichtelfcc84872017-03-27 14:20:15 +02001466are exported.
1467
1468A Kbuild file may be defined under arch/<arch>/include/uapi/asm/ and
1469arch/<arch>/include/asm/ to list asm files coming from asm-generic.
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001470See subsequent chapter for the syntax of the Kbuild file.
1471
Masahiro Yamadae079a082020-04-29 12:45:17 +090014728.1 no-export-headers
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001473---------------------
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001474
Nicolas Dichtelfcc84872017-03-27 14:20:15 +02001475 no-export-headers is essentially used by include/uapi/linux/Kbuild to
1476 avoid exporting specific headers (e.g. kvm.h) on architectures that do
1477 not support it. It should be avoided as much as possible.
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001478
Masahiro Yamadae079a082020-04-29 12:45:17 +090014798.2 generic-y
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001480-------------
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001481
1482 If an architecture uses a verbatim copy of a header from
1483 include/asm-generic then this is listed in the file
1484 arch/$(ARCH)/include/asm/Kbuild like this:
1485
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001486 Example::
1487
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001488 #arch/x86/include/asm/Kbuild
1489 generic-y += termios.h
1490 generic-y += rtc.h
1491
1492 During the prepare phase of the build a wrapper include
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001493 file is generated in the directory::
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001494
1495 arch/$(ARCH)/include/generated/asm
1496
1497 When a header is exported where the architecture uses
1498 the generic header a similar wrapper is generated as part
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001499 of the set of exported headers in the directory::
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001500
1501 usr/include/asm
1502
1503 The generated wrapper will in both cases look like the following:
1504
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001505 Example: termios.h::
1506
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001507 #include <asm-generic/termios.h>
Sam Ravnborgc7bb3492009-04-10 08:52:43 +02001508
Masahiro Yamadae079a082020-04-29 12:45:17 +090015098.3 generated-y
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001510---------------
James Hogan54b880c2016-06-24 23:42:23 +01001511
1512 If an architecture generates other header files alongside generic-y
Masahiro Yamadaae3f4152017-06-09 17:29:52 +09001513 wrappers, generated-y specifies them.
James Hogan54b880c2016-06-24 23:42:23 +01001514
1515 This prevents them being treated as stale asm-generic wrappers and
1516 removed.
1517
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001518 Example::
1519
James Hogan54b880c2016-06-24 23:42:23 +01001520 #arch/x86/include/asm/Kbuild
1521 generated-y += syscalls_32.h
1522
Masahiro Yamadae079a082020-04-29 12:45:17 +090015238.4 mandatory-y
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001524---------------
Nicolas Dichtelfcc84872017-03-27 14:20:15 +02001525
Masahiro Yamada037fc332019-03-17 11:01:09 +09001526 mandatory-y is essentially used by include/(uapi/)asm-generic/Kbuild
Masahiro Yamada91998732019-01-03 10:10:38 +09001527 to define the minimum set of ASM headers that all architectures must have.
1528
1529 This works like optional generic-y. If a mandatory header is missing
1530 in arch/$(ARCH)/include/(uapi/)/asm, Kbuild will automatically generate
1531 a wrapper of the asm-generic one.
Nicolas Dichtelfcc84872017-03-27 14:20:15 +02001532
Masahiro Yamadae079a082020-04-29 12:45:17 +090015339 Kbuild Variables
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001534==================
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536The top Makefile exports the following variables:
1537
1538 VERSION, PATCHLEVEL, SUBLEVEL, EXTRAVERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 These variables define the current kernel version. A few arch
1540 Makefiles actually use these values directly; they should use
1541 $(KERNELRELEASE) instead.
1542
1543 $(VERSION), $(PATCHLEVEL), and $(SUBLEVEL) define the basic
1544 three-part version number, such as "2", "4", and "0". These three
1545 values are always numeric.
1546
1547 $(EXTRAVERSION) defines an even tinier sublevel for pre-patches
1548 or additional patches. It is usually some non-numeric string
1549 such as "-pre4", and is often blank.
1550
1551 KERNELRELEASE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 $(KERNELRELEASE) is a single string such as "2.4.0-pre4", suitable
1553 for constructing installation directory names or showing in
1554 version strings. Some arch Makefiles use it for this purpose.
1555
1556 ARCH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 This variable defines the target architecture, such as "i386",
1558 "arm", or "sparc". Some kbuild Makefiles test $(ARCH) to
1559 determine which files to compile.
1560
1561 By default, the top Makefile sets $(ARCH) to be the same as the
1562 host system architecture. For a cross build, a user may
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001563 override the value of $(ARCH) on the command line::
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 make ARCH=m68k ...
1566
1567
1568 INSTALL_PATH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 This variable defines a place for the arch Makefiles to install
1570 the resident kernel image and System.map file.
Randy Dunlap5c811e52007-02-17 20:03:14 +01001571 Use this for architecture-specific install targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 INSTALL_MOD_PATH, MODLIB
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 $(INSTALL_MOD_PATH) specifies a prefix to $(MODLIB) for module
1575 installation. This variable is not defined in the Makefile but
1576 may be passed in by the user if desired.
1577
1578 $(MODLIB) specifies the directory for module installation.
1579 The top Makefile defines $(MODLIB) to
1580 $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE). The user may
1581 override this value on the command line if desired.
1582
Theodore Ts'oac031f22006-06-21 20:53:09 -04001583 INSTALL_MOD_STRIP
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001584 If this variable is specified, it will cause modules to be stripped
Theodore Ts'oac031f22006-06-21 20:53:09 -04001585 after they are installed. If INSTALL_MOD_STRIP is '1', then the
Geert Uytterhoeven39fed702014-08-08 17:23:10 +02001586 default option --strip-debug will be used. Otherwise, the
Gilles Espinasse177b2412011-01-09 08:59:49 +01001587 INSTALL_MOD_STRIP value will be used as the option(s) to the strip
1588 command.
Theodore Ts'oac031f22006-06-21 20:53:09 -04001589
1590
Masahiro Yamadae079a082020-04-29 12:45:17 +0900159110 Makefile language
1592====================
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Jan Engelhardta07f6032006-07-27 22:14:29 +02001594The kernel Makefiles are designed to be run with GNU Make. The Makefiles
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595use only the documented features of GNU Make, but they do use many
1596GNU extensions.
1597
1598GNU Make supports elementary list-processing functions. The kernel
1599Makefiles use a novel style of list building and manipulation with few
1600"if" statements.
1601
1602GNU Make has two assignment operators, ":=" and "=". ":=" performs
1603immediate evaluation of the right-hand side and stores an actual string
1604into the left-hand side. "=" is like a formula definition; it stores the
1605right-hand side in an unevaluated form and then evaluates this form each
1606time the left-hand side is used.
1607
1608There are some cases where "=" is appropriate. Usually, though, ":="
1609is the right choice.
1610
Masahiro Yamadae079a082020-04-29 12:45:17 +0900161111 Credits
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001612==========
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001614- Original version made by Michael Elizabeth Chastain, <mailto:mec@shout.net>
1615- Updates by Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de>
1616- Updates by Sam Ravnborg <sam@ravnborg.org>
1617- Language QA by Jan Engelhardt <jengelh@gmx.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Masahiro Yamadae079a082020-04-29 12:45:17 +0900161912 TODO
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03001620=======
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Jan Engelhardta07f6032006-07-27 22:14:29 +02001622- Describe how kbuild supports shipped files with _shipped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623- Generating offset header files.
Randy Dunlapb26ff482020-08-28 10:26:26 -07001624- Add more variables to chapters 7 or 9?