]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man7/build.7
MFV r322240: 8491 uberblock on-disk padding to reserve space for smoothly merging...
[FreeBSD/FreeBSD.git] / share / man / man7 / build.7
1 .\" Copyright (c) 2000
2 .\"     Mike W. Meyer
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd May 11, 2017
28 .Dt BUILD 7
29 .Os
30 .Sh NAME
31 .Nm build
32 .Nd information on how to build the system
33 .Sh DESCRIPTION
34 The sources for the
35 .Fx
36 system and its applications are contained in three different directories,
37 normally
38 .Pa /usr/src ,
39 .Pa /usr/doc ,
40 and
41 .Pa /usr/ports .
42 These directories may be initially empty or non-existent until updated with
43 .Xr svn 1
44 or
45 .Xr portsnap 8 .
46 Directory
47 .Pa /usr/src
48 contains the
49 .Dq "base system"
50 sources, which is loosely defined as the things required to rebuild
51 the system to a useful state.
52 Directory
53 .Pa /usr/doc
54 contains the source for the system documentation, excluding the manual
55 pages.
56 Directory
57 .Pa /usr/ports
58 contains a tree that provides a consistent interface for building and
59 installing third party applications.
60 For more information about the ports build process, see
61 .Xr ports 7 .
62 .Pp
63 The
64 .Xr make 1
65 command is used in each of these directories to build and install the
66 things in that directory.
67 Issuing the
68 .Xr make 1
69 command in any directory or
70 subdirectory of those directories has the same effect as issuing the
71 same command in all subdirectories of that directory.
72 With no target specified, the things in that directory are just built.
73 .Pp
74 A source tree is allowed to be read-only.
75 As described in
76 .Xr make 1 ,
77 objects are usually built in a separate object directory hierarchy
78 specified by the environment variable
79 .Va MAKEOBJDIRPREFIX ,
80 or under
81 .Pa /usr/obj
82 if variable
83 .Va MAKEOBJDIRPREFIX
84 is not set.
85 For a given source directory, its canonical object directory
86 would be
87 .Pa ${MAKEOBJDIRPREFIX}${.CURDIR}
88 if
89 .Xr make 1
90 variable
91 .Va MAKEOBJDIRPREFIX
92 is set, or
93 .Pa /usr/obj${.CURDIR}
94 if this variable is not set.
95 Cross-builds set the object directory as described in the
96 documentation for the
97 .Cm buildworld
98 target below.
99 .Pp
100 The build may be controlled by defining
101 .Xr make 1
102 variables described in the
103 .Sx ENVIRONMENT
104 section below, and by the variables documented in
105 .Xr make.conf 5 .
106 .Pp
107 The following list provides the names and actions for the targets
108 supported by the build system:
109 .Bl -tag -width ".Cm cleandepend"
110 .It Cm analyze
111 Run Clang static analyzer against all objects and present output on stdout.
112 .It Cm check
113 Run tests for a given subdirectory.
114 The default directory used is
115 .Pa ${.OBJDIR} ,
116 but the check directory can be changed with
117 .Pa ${CHECKDIR} .
118 .It Cm checkworld
119 Run the
120 .Fx
121 test suite on installed world.
122 .It Cm clean
123 Remove any files created during the build process.
124 .It Cm cleandepend
125 Remove the
126 .Pa ${.OBJDIR}/${DEPENDFILE}*
127 files generated by prior
128 .Dq Li "make"
129 and
130 .Dq Li "make depend"
131 steps.
132 .It Cm cleandir
133 Remove the canonical object directory if it exists, or perform
134 actions equivalent to
135 .Dq Li "make clean cleandepend"
136 if it does not.
137 This target will also remove an
138 .Pa obj
139 link in
140 .Pa ${.CURDIR}
141 if that exists.
142 .Pp
143 It is advisable to run
144 .Dq Li "make cleandir"
145 twice: the first invocation will remove the canonical object directory
146 and the second one will clean up
147 .Pa ${.CURDIR} .
148 .It Cm depend
149 Generate a list of build dependencies in file
150 .Pa ${.OBJDIR}/${DEPENDFILE} .
151 Per-object dependencies are generated at build time and stored in
152 .Pa ${.OBJDIR}/${DEPENDFILE}.${OBJ} .
153 .It Cm install
154 Install the results of the build to the appropriate location in the
155 installation directory hierarchy specified in variable
156 .Va DESTDIR .
157 .It Cm obj
158 Create the canonical object directory associated with the current
159 directory.
160 .It Cm objlink
161 Create a symbolic link to the canonical object directory in
162 .Pa ${.CURDIR} .
163 .It Cm tags
164 Generate a tags file using the program specified in the
165 .Xr make 1
166 variable
167 .Va CTAGS .
168 The build system supports
169 .Xr ctags 1
170 and
171 .Nm "GNU Global" .
172 .El
173 .Pp
174 The other supported targets under directory
175 .Pa /usr/src
176 are:
177 .Bl -tag -width ".Cm distributeworld"
178 .It Cm buildenv
179 Spawn an interactive shell with environment variables set up for
180 cross-building the system.
181 The target architecture needs to be specified with
182 .Xr make 1
183 variables
184 .Va TARGET_ARCH
185 and
186 .Va TARGET .
187 .Pp
188 This target is only useful after a complete cross-toolchain including
189 the compiler, linker, assembler, headers and libraries has been
190 built; see the
191 .Cm toolchain
192 target below.
193 .It Cm buildworld
194 Build everything but the kernel, configure files in
195 .Pa etc ,
196 and
197 .Pa release .
198 The object directory can be changed from the default
199 .Pa /usr/obj
200 by setting the
201 .Pa MAKEOBJDIRPREFIX
202 .Xr make 1
203 variable.
204 The actual build location prefix used is
205 .Pa ${MAKEOBJDIRPREFIX}${.CURDIR}
206 for native builds, and
207 .Pa ${MAKEOBJDIRPREFIX}/${TARGET}${.CURDIR}
208 for cross builds and native builds with variable
209 .Va CROSS_BUILD_TESTING
210 set.
211 .It Cm cleanworld
212 Attempt to clean up targets built by a preceding
213 .Cm buildworld
214 step.
215 .It Cm distributeworld
216 Distribute everything compiled by a preceding
217 .Cm buildworld
218 step.
219 Files are placed in the directory hierarchy specified by
220 .Xr make 1
221 variable
222 .Va DISTDIR .
223 This target is used while building a release; see
224 .Xr release 7 .
225 .It Cm packageworld
226 Archive the results of
227 .Cm distributeworld ,
228 placing the results in
229 .Va DISTDIR .
230 This target is used while building a release; see
231 .Xr release 7 .
232 .It Cm installworld
233 Install everything built by a preceding
234 .Cm buildworld
235 step into the directory hierarchy pointed to by
236 .Xr make 1
237 variable
238 .Va DESTDIR .
239 .Pp
240 If installing onto an NFS file system and running
241 .Xr make 1
242 with the
243 .Fl j
244 option, make sure that
245 .Xr rpc.lockd 8
246 is running on both client and server.
247 See
248 .Xr rc.conf 5
249 on how to make it start at boot time.
250 .It Cm toolchain
251 Create the build toolchain needed to build the rest of the system.
252 For cross-architecture builds, this step creates a cross-toolchain.
253 .It Cm universe
254 For each architecture,
255 execute a
256 .Cm buildworld
257 followed by a
258 .Cm buildkernel
259 for all kernels for that architecture,
260 including
261 .Pa LINT .
262 This command takes a long time.
263 .It Cm update
264 Get updated sources as configured in
265 .Xr make.conf 5 .
266 .It Cm targets
267 Print a list of supported
268 .Va TARGET
269 /
270 .Va TARGET_ARCH
271 pairs for world and kernel targets.
272 .It Cm tinderbox
273 Execute the same targets as
274 .Cm universe .
275 In addition print a summary of all failed targets at the end and
276 exit with an error if there were any.
277 .It Cm toolchains
278 Create a build toolchain for each architecture supported by the build system.
279 .El
280 .Pp
281 Kernel specific build targets in
282 .Pa /usr/src
283 are:
284 .Bl -tag -width ".Cm distributekernel"
285 .It Cm buildkernel
286 Rebuild the kernel and the kernel modules.
287 The object directory can be changed from the default
288 .Pa /usr/obj
289 by setting the
290 .Pa MAKEOBJDIRPREFIX
291 .Xr make 1
292 variable.
293 .It Cm installkernel
294 Install the kernel and the kernel modules to directory
295 .Pa ${DESTDIR}/boot/kernel ,
296 renaming any pre-existing directory with this name to
297 .Pa kernel.old
298 if it contained the currently running kernel.
299 The target directory under
300 .Pa ${DESTDIR}
301 may be modified using the
302 .Va INSTKERNNAME
303 and
304 .Va KODIR
305 .Xr make 1
306 variables.
307 .It Cm distributekernel
308 Install the kernel to the directory
309 .Pa ${DISTDIR}/kernel/boot/kernel .
310 This target is used while building a release; see
311 .Xr release 7 .
312 .It Cm packagekernel
313 Archive the results of
314 .Cm distributekernel ,
315 placing the results in
316 .Va DISTDIR .
317 This target is used while building a release; see
318 .Xr release 7 .
319 .It Cm kernel
320 Equivalent to
321 .Cm buildkernel
322 followed by
323 .Cm installkernel
324 .It Cm kernel-toolchain
325 Rebuild the tools needed for kernel compilation.
326 Use this if you did not do a
327 .Cm buildworld
328 first.
329 .It Cm reinstallkernel
330 Reinstall the kernel and the kernel modules, overwriting the contents
331 of the target directory.
332 As with the
333 .Cm installkernel
334 target, the target directory can be specified using the
335 .Xr make 1
336 variable
337 .Va INSTKERNNAME .
338 .El
339 .Pp
340 Convenience targets for cleaning up the install destination directory
341 denoted by variable
342 .Va DESTDIR
343 include:
344 .Bl -tag -width ".Cm delete-old-libs"
345 .It Cm check-old
346 Print a list of old files and directories in the system.
347 .It Cm delete-old
348 Delete obsolete base system files and directories interactively.
349 When
350 .Li -DBATCH_DELETE_OLD_FILES
351 is specified at the command line, the delete operation will be
352 non-interactive.
353 The variables
354 .Va DESTDIR ,
355 .Va TARGET_ARCH
356 and
357 .Va TARGET
358 should be set as with
359 .Dq Li "make installworld" .
360 .It Cm delete-old-libs
361 Delete obsolete base system libraries interactively.
362 This target should only be used if no third party software uses these
363 libraries.
364 When
365 .Li -DBATCH_DELETE_OLD_FILES
366 is specified at the command line, the delete operation will be
367 non-interactive.
368 The variables
369 .Va DESTDIR ,
370 .Va TARGET_ARCH
371 and
372 .Va TARGET
373 should be set as with
374 .Dq Li "make installworld" .
375 .El
376 .Sh ENVIRONMENT
377 Variables that influence all builds include:
378 .Bl -tag -width ".Va MAKEOBJDIRPREFIX"
379 .It Va DEBUG_FLAGS
380 Defines a set of debugging flags that will be used to build all userland
381 binaries under
382 .Pa /usr/src .
383 When
384 .Va DEBUG_FLAGS
385 is defined, the
386 .Cm install
387 and
388 .Cm installworld
389 targets install binaries from the current
390 .Va MAKEOBJDIRPREFIX
391 without stripping,
392 so that debugging information is retained in the installed binaries.
393 .It Va DESTDIR
394 The directory hierarchy prefix where built objects will be installed.
395 If not set,
396 .Va DESTDIR
397 defaults to the empty string.
398 .It Va MAKEOBJDIRPREFIX
399 Defines the prefix for directory names in the tree of built objects.
400 Defaults to
401 .Pa /usr/obj
402 if not defined.
403 This variable should only be set in the environment and not via
404 .Pa /etc/make.conf
405 or the command line.
406 .It Va NO_WERROR
407 If defined, compiler warnings will not cause the build to halt,
408 even if the makefile says otherwise.
409 .It Va WITH_CTF
410 If defined, the build process will run the DTrace CTF conversion
411 tools on built objects.
412 .El
413 .Pp
414 Additionally, builds in
415 .Pa /usr/src
416 are influenced by the following
417 .Xr make 1
418 variables:
419 .Bl -tag -width ".Va SUBDIR_OVERRIDE"
420 .It Va KERNCONF
421 Overrides which kernel to build and install for the various kernel
422 make targets.
423 It defaults to
424 .Cm GENERIC .
425 .It Va KERNFAST
426 If set, the build target
427 .Cm buildkernel
428 defaults to setting
429 .Va NO_KERNELCLEAN ,
430 .Va NO_KERNELCONFIG ,
431 and
432 .Va NO_KERNELOBJ .
433 When set to a value other than
434 .Cm 1
435 then
436 .Va KERNCONF
437 is set to the value of
438 .Va KERNFAST .
439 .It Va LOCAL_DIRS
440 If set, this variable supplies a list of additional directories relative to
441 the root of the source tree to build as part of the
442 .Cm everything
443 target.
444 .It Va LOCAL_ITOOLS
445 If set, this variable supplies a list of additional tools that are used by the
446 .Cm installworld
447 and
448 .Cm distributeworld
449 targets.
450 .It Va LOCAL_LIB_DIRS
451 If set, this variable supplies a list of additional directories relative to
452 the root of the source tree to build as part of the
453 .Cm libraries
454 target.
455 .It Va LOCAL_MTREE
456 If set, this variable supplies a list of additional mtrees relative to the
457 root of the source tree to use as part of the
458 .Cm hierarchy
459 target.
460 .It Va LOCAL_TOOL_DIRS
461 If set, this variable supplies a list of additional directories relative to
462 the root of the source tree to build as part of the
463 .Cm build-tools
464 target.
465 .It Va LOCAL_XTOOL_DIRS
466 If set, this variable supplies a list of additional directories relative to
467 the root of the source tree to build as part of the
468 .Cm cross-tools
469 target.
470 .It Va PORTS_MODULES
471 A list of ports with kernel modules that should be built and installed
472 as part of the
473 .Cm buildkernel
474 and
475 .Cm installkernel
476 process.
477 .Bd -literal -offset indent
478 make PORTS_MODULES=emulators/kqemu-kmod kernel
479 .Ed
480 .It Va STRIPBIN
481 Command to use at install time when stripping binaries.
482 Be sure to add any additional tools required to run
483 .Va STRIPBIN
484 to the
485 .Va LOCAL_ITOOLS
486 .Xr make 1
487 variable before running the
488 .Cm distributeworld
489 or
490 .Cm installworld
491 targets.
492 See
493 .Xr install 1
494 for more details.
495 .It Va SUBDIR_OVERRIDE
496 Override the default list of sub-directories and only build the
497 sub-directory named in this variable.
498 If combined with
499 .Cm buildworld
500 then all libraries and includes, and some of the build tools will still build
501 as well.
502 Specifying
503 .Cm -DNO_LIBS ,
504 and
505 .Cm -DWORLDFAST
506 will only build the specified directory as was done historically.
507 When combined with
508 .Cm buildworld
509 it is necesarry to override
510 .Va LOCAL_LIB_DIRS
511 with any custom directories containing libraries.
512 This allows building a subset of the system in the same way as
513 .Cm buildworld
514 does using its sysroot handling.
515 This variable can also be useful when debugging failed builds.
516 .Bd -literal -offset indent
517 make some-target SUBDIR_OVERRIDE=foo/bar
518 .Ed
519 .It Va TARGET
520 The target hardware platform.
521 This is analogous to the
522 .Dq Nm uname Fl m
523 output.
524 This is necessary to cross-build some target architectures.
525 For example, cross-building for ARM64 machines requires
526 .Va TARGET_ARCH Ns = Ns Li aarch64
527 and
528 .Va TARGET Ns = Ns Li arm64 .
529 If not set,
530 .Va TARGET
531 defaults to the current hardware platform, unless
532 .Va TARGET_ARCH
533 is also set, in which case it defaults to the appropriate
534 value for that architecture.
535 .It Va TARGET_ARCH
536 The target machine processor architecture.
537 This is analogous to the
538 .Dq Nm uname Fl p
539 output.
540 Set this to cross-build for a different architecture.
541 If not set,
542 .Va TARGET_ARCH
543 defaults to the current machine architecture, unless
544 .Va TARGET
545 is also set, in which case it defaults to the appropriate
546 value for that platform.
547 Typically, one only needs to set
548 .Va TARGET .
549 .El
550 .Pp
551 Builds under directory
552 .Pa /usr/src
553 are also influenced by defining one or more of the following symbols,
554 using the
555 .Fl D
556 option of
557 .Xr make 1 :
558 .Bl -tag -width ".Va -DNO_KERNELCONFIG"
559 .It Va NO_CLEANDIR
560 If set, the build targets that clean parts of the object tree use the
561 equivalent of
562 .Dq make clean
563 instead of
564 .Dq make cleandir .
565 .It Va NO_CLEAN
566 If set, no object tree files are cleaned at all.
567 This is the default when
568 .Va WITH_META_MODE
569 is used with
570 .Xr filemon 4
571 loaded.
572 See
573 .Xr src.conf 5
574 for more details.
575 Setting
576 .Va NO_CLEAN
577 implies
578 .Va NO_KERNELCLEAN ,
579 so when
580 .Va NO_CLEAN
581 is set no kernel objects are cleaned either.
582 .It Va NO_CTF
583 If set, the build process does not run the DTrace CTF conversion tools
584 on built objects.
585 .It Va NO_SHARE
586 If set, the build does not descend into the
587 .Pa /usr/src/share
588 subdirectory (i.e., manual pages, locale data files, timezone data files and
589 other
590 .Pa /usr/src/share
591 files will not be rebuild from their sources).
592 .It Va NO_KERNELCLEAN
593 If set, the build process does not run
594 .Dq make clean
595 as part of the
596 .Cm buildkernel
597 target.
598 .It Va NO_KERNELCONFIG
599 If set, the build process does not run
600 .Xr config 8
601 as part of the
602 .Cm buildkernel
603 target.
604 .It Va NO_KERNELOBJ
605 If set, the build process does not run
606 .Dq make obj
607 as part of the
608 .Cm buildkernel
609 target.
610 .It Va NO_DOCUPDATE
611 If set, the update process does not update the source of the
612 .Fx
613 documentation as part of the
614 .Dq make update
615 target.
616 .It Va NO_LIBS
617 If set, the libraries phase will be skipped.
618 .It Va NO_OBJ
619 If set, no object directories will be created.
620 This should only be used if object directories were created in a
621 previous build and no new directories are connected.
622 .It Va NO_PORTSUPDATE
623 If set, the update process does not update the Ports tree as part of the
624 .Dq make update
625 target.
626 .It Va NO_WWWUPDATE
627 If set, the update process does not update the www tree as part of the
628 .Dq make update
629 target.
630 .It Va WORLDFAST
631 If set, the build target
632 .Cm buildworld
633 defaults to setting
634 .Va NO_CLEAN ,
635 .Va NO_OBJ ,
636 and will skip most bootstrap phases.
637 It will only bootstrap libraries and build all of userland.
638 This option should be used only when it is known that none of the bootstrap
639 needs changed and that no new directories have been connected to the build.
640 .El
641 .Pp
642 Builds under directory
643 .Pa /usr/doc
644 are influenced by the following
645 .Xr make 1
646 variables:
647 .Bl -tag -width ".Va DOC_LANG"
648 .It Va DOC_LANG
649 If set, restricts the documentation build to the language subdirectories
650 specified as its content.
651 The default action is to build documentation for all languages.
652 .El
653 .Pp
654 Builds using the
655 .Cm universe
656 target are influenced by the following
657 .Xr make 1
658 variables:
659 .Bl -tag -width ".Va MAKE_JUST_KERNELS"
660 .It Va JFLAG
661 Pass the value of this variable to each
662 .Xr make 1
663 invocation used to build worlds and kernels.
664 This can be used to enable multiple jobs within a single architecture's build
665 while still building each architecture serially.
666 .It Va MAKE_JUST_KERNELS
667 Only build kernels for each supported architecture.
668 .It Va MAKE_JUST_WORLDS
669 Only build worlds for each supported architecture.
670 .It Va UNIVERSE_TARGET
671 Execute the specified
672 .Xr make 1
673 target for each supported architecture instead of the default action of
674 building a world and one or more kernels.
675 .El
676 .Sh FILES
677 .Bl -tag -width ".Pa /usr/share/examples/etc/make.conf" -compact
678 .It Pa /usr/doc/Makefile
679 .It Pa /usr/doc/share/mk/doc.project.mk
680 .It Pa /usr/ports/Mk/bsd.port.mk
681 .It Pa /usr/ports/Mk/bsd.sites.mk
682 .It Pa /usr/share/examples/etc/make.conf
683 .It Pa /usr/src/Makefile
684 .It Pa /usr/src/Makefile.inc1
685 .El
686 .Sh EXAMPLES
687 For an
688 .Dq approved
689 method of updating your system from the latest sources, please see the
690 .Sx COMMON ITEMS
691 section in
692 .Pa src/UPDATING .
693 .Pp
694 The following sequence of commands can be used to cross-build the
695 system for the armv6 architecture on an amd64 host:
696 .Bd -literal -offset indent
697 cd /usr/src
698 make TARGET_ARCH=armv6 buildworld buildkernel
699 make TARGET_ARCH=armv6 DESTDIR=/clients/arm64 installworld installkernel
700 .Ed
701 .Sh SEE ALSO
702 .Xr cc 1 ,
703 .Xr install 1 ,
704 .Xr make 1 ,
705 .Xr svn 1 ,
706 .Xr make.conf 5 ,
707 .Xr src.conf 5 ,
708 .Xr arch 7 ,
709 .Xr ports 7 ,
710 .Xr release 7 ,
711 .Xr tests 7 ,
712 .Xr config 8 ,
713 .Xr mergemaster 8 ,
714 .Xr portsnap 8 ,
715 .Xr reboot 8 ,
716 .Xr shutdown 8
717 .Sh AUTHORS
718 .An Mike W. Meyer Aq Mt mwm@mired.org