1# 2# 3# The common user-driven targets are (for a complete list, see build(7)): 4# 5# universe - *Really* build *everything* (buildworld and 6# all kernels on all architectures). Define 7# MAKE_JUST_KERNELS or WITHOUT_WORLDS to only build kernels, 8# MAKE_JUST_WORLDS or WITHOUT_KERNELS to only build userland. 9# tinderbox - Same as universe, but presents a list of failed build 10# targets and exits with an error if there were any. 11# worlds - Same as universe, except just makes the worlds. 12# kernels - Same as universe, except just makes the kernels. 13# buildworld - Rebuild *everything*, including glue to help do 14# upgrades. 15# installworld - Install everything built by "buildworld". 16# world - buildworld + installworld, no kernel. 17# buildkernel - Rebuild the kernel and the kernel-modules. 18# installkernel - Install the kernel and the kernel-modules. 19# installkernel.debug 20# reinstallkernel - Reinstall the kernel and the kernel-modules. 21# reinstallkernel.debug 22# kernel - buildkernel + installkernel. 23# kernel-toolchain - Builds the subset of world necessary to build a kernel 24# kernel-toolchains - Build kernel-toolchain for all universe targets. 25# doxygen - Build API documentation of the kernel, needs doxygen. 26# checkworld - Run test suite on installed world. 27# check-old - List obsolete directories/files/libraries. 28# check-old-dirs - List obsolete directories. 29# check-old-files - List obsolete files. 30# check-old-libs - List obsolete libraries. 31# delete-old - Delete obsolete directories/files. 32# delete-old-dirs - Delete obsolete directories. 33# delete-old-files - Delete obsolete files. 34# delete-old-libs - Delete obsolete libraries. 35# list-old-dirs - Raw list of possibly obsolete directories. 36# list-old-files - Raw list of possibly obsolete files. 37# list-old-libs - Raw list of possibly obsolete libraries. 38# targets - Print a list of supported TARGET/TARGET_ARCH pairs 39# for world and kernel targets. 40# toolchains - Build a toolchain for all world and kernel targets. 41# makeman - Regenerate src.conf(5) 42# sysent - (Re)build syscall entries from syscalls.master. 43# xdev - xdev-build + xdev-install for the architecture 44# specified with TARGET and TARGET_ARCH. 45# xdev-build - Build cross-development tools. 46# xdev-install - Install cross-development tools. 47# xdev-links - Create traditional links in /usr/bin for cc, etc 48# native-xtools - Create host binaries that produce target objects 49# for use in qemu user-mode jails. TARGET and 50# TARGET_ARCH should be defined. 51# native-xtools-install 52# - Install the files to the given DESTDIR/NXTP where 53# NXTP defaults to /nxb-bin. 54# 55# This makefile is simple by design. The FreeBSD make automatically reads 56# the /usr/share/mk/sys.mk unless the -m argument is specified on the 57# command line. By keeping this makefile simple, it doesn't matter too 58# much how different the installed mk files are from those in the source 59# tree. This makefile executes a child make process, forcing it to use 60# the mk files from the source tree which are supposed to DTRT. 61# 62# Most of the user-driven targets (as listed above) are implemented in 63# Makefile.inc1. The exceptions are universe, tinderbox and targets. 64# 65# If you want to build your system from source, be sure that /usr/obj has 66# at least 6 GB of disk space available. A complete 'universe' build of 67# r340283 (2018-11) required 167 GB of space. ZFS lz4 compression 68# achieved a 2.18x ratio, reducing actual space to 81 GB. 69# 70# For individuals wanting to build from the sources currently on their 71# system, the simple instructions are: 72# 73# 1. `cd /usr/src' (or to the directory containing your source tree). 74# 2. Define `HISTORICAL_MAKE_WORLD' variable (see README). 75# 3. `make world' 76# 77# For individuals wanting to upgrade their sources (even if only a 78# delta of a few days): 79# 80# 1. `cd /usr/src' (or to the directory containing your source tree). 81# 2. `make buildworld' 82# 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 83# 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 84# [steps 3. & 4. can be combined by using the "kernel" target] 85# 5. `reboot' (in single user mode: boot -s from the loader prompt). 86# 6. `etcupdate -p' 87# 7. `make installworld' 88# 8. `etcupdate -B' 89# 9. `make delete-old' 90# 10. `reboot' 91# 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) 92# 93# For individuals wanting to build from source with GCC from ports, first 94# install the appropriate GCC cross toolchain package: 95# `pkg install ${TARGET_ARCH}-gccN` 96# 97# Once you have installed the necessary cross toolchain, simply pass 98# CROSS_TOOLCHAIN=${TARGET_ARCH}-gccN while building with the above steps, 99# e.g., `make buildworld CROSS_TOOLCHAIN=amd64-gcc13`. 100# 101# The ${TARGET_ARCH}-gccN packages are provided as flavors of the 102# devel/freebsd-gccN ports. 103# 104# See src/UPDATING `COMMON ITEMS' for more complete information. 105# 106# If TARGET=machine (e.g. powerpc, arm64, ...) is specified you can 107# cross build world for other machine types using the buildworld target, 108# and once the world is built you can cross build a kernel using the 109# buildkernel target. 110# 111# Define the user-driven targets. These are listed here in alphabetical 112# order, but that's not important. 113# 114# Targets that begin with underscore are internal targets intended for 115# developer convenience only. They are intentionally not documented and 116# completely subject to change without notice. 117# 118# For more information, see the build(7) manual page. 119# 120 121# Include jobs.mk early if we need it. 122# It will turn: 123# make buildworld-jobs 124# into 125# make -j${JOB_MAX} buildworld > ../buildworld.log 2>&1 126# 127.if make(*-jobs) 128.include <jobs.mk> 129.endif 130 131.if defined(UNIVERSE_TARGET) || defined(MAKE_JUST_WORLDS) || defined(WITHOUT_KERNELS) 132__DO_KERNELS=no 133.endif 134.if defined(MAKE_JUST_KERNELS) || defined(WITHOUT_WORLDS) 135__DO_WORLDS=no 136.endif 137__DO_WORLDS?=yes 138__DO_KERNELS?=yes 139 140# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION 141# can be cached for sub-makes. We can't do this while still running on the 142# old fmake from FreeBSD 9.x or older, so avoid including it then to avoid 143# heartburn upgrading from older systems. The need for CC is done with new 144# make later in the build, and caching COMPILER_TYPE/VERSION is only an 145# optimization. Also sinclude it to be friendlier to foreign OS hosted builds. 146.if ${MAKE_VERSION} >= 20140620 && defined(.PARSEDIR) 147.sinclude <bsd.compiler.mk> 148.endif 149 150# Note: we use this awkward construct to be compatible with FreeBSD's 151# old make used in 10.0 and 9.2 and earlier. 152.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && \ 153 !make(showconfig) && !make(print-dir) 154# targets/Makefile plays the role of top-level 155.include "targets/Makefile" 156.else 157 158.include "${.CURDIR}/share/mk/bsd.compat.pre.mk" 159 160TGTS= all all-man buildenv buildenvvars buildetc buildkernel buildworld \ 161 check check-old check-old-dirs check-old-files check-old-libs \ 162 checkdpadd checkworld clean cleandepend cleandir cleankernel \ 163 cleanworld cleanuniverse \ 164 delete-old delete-old-dirs delete-old-files delete-old-libs \ 165 depend distribute distributekernel distributekernel.debug \ 166 distributeworld distrib-dirs distribution doxygen \ 167 everything hier hierarchy install installcheck installetc installkernel \ 168 installkernel.debug packagekernel packageworld \ 169 reinstallkernel reinstallkernel.debug \ 170 installworld kernel-toolchain libraries maninstall \ 171 list-old-dirs list-old-files list-old-libs \ 172 obj objlink showconfig tags toolchain \ 173 makeman sysent \ 174 _cleanworldtmp _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ 175 _build-tools _build-metadata _cross-tools _includes _libraries \ 176 builddtb xdev xdev-build xdev-install \ 177 xdev-links native-xtools native-xtools-install stageworld stagekernel \ 178 stage-packages stage-packages-kernel stage-packages-world stage-packages-source \ 179 create-packages-world create-packages-kernel \ 180 create-packages-kernel-repo create-packages-world-repo \ 181 create-packages-source create-packages \ 182 update-packages packages installconfig real-packages real-update-packages \ 183 sign-packages package-pkg print-dir test-system-compiler test-system-linker \ 184 test-includes 185 186.for libcompat in ${_ALL_libcompats} 187TGTS+= build${libcompat} distribute${libcompat} install${libcompat} 188.endfor 189 190# These targets require a TARGET and TARGET_ARCH be defined. 191XTGTS= native-xtools native-xtools-install xdev xdev-build xdev-install \ 192 xdev-links 193 194# XXX: r156740: This can't work since bsd.subdir.mk is not included ever. 195# It will only work for SUBDIR_TARGETS in make.conf. 196TGTS+= ${SUBDIR_TARGETS} 197 198BITGTS= files includes 199BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/} 200TGTS+= ${BITGTS} 201 202# Only some targets are allowed to use meta mode. Others get it 203# disabled. In some cases, such as 'install', meta mode can be dangerous 204# as a cookie may be used to prevent redundant installations (such as 205# for WORLDTMP staging). For DESTDIR=/ we always want to install though. 206# For other cases, such as delete-old-libs, meta mode may break 207# the interactive tty prompt. The safest route is to just whitelist 208# the ones that benefit from it. 209META_TGT_WHITELIST+= \ 210 _* buildfiles buildincludes buildkernel \ 211 buildworld everything kernel-toolchain kernel-toolchains kernel \ 212 kernels libraries native-xtools showconfig test-includes \ 213 test-system-compiler test-system-linker tinderbox toolchain \ 214 toolchains universe universe-toolchain world worlds xdev xdev-build 215 216.for libcompat in ${_ALL_libcompats} 217META_TGT_WHITELIST+= build${libcompat} 218.endfor 219 220.ORDER: buildworld installworld 221.ORDER: buildworld distrib-dirs 222.ORDER: buildworld distribution 223.ORDER: buildworld distribute 224.ORDER: buildworld distributeworld 225.ORDER: buildworld buildkernel 226.ORDER: distrib-dirs distribute 227.ORDER: distrib-dirs distributeworld 228.ORDER: distrib-dirs installworld 229.ORDER: distribution distribute 230.ORDER: distributeworld distribute 231.ORDER: distributeworld distribution 232.ORDER: installworld distribute 233.ORDER: installworld distribution 234.ORDER: installworld installkernel 235.ORDER: buildkernel installkernel 236.ORDER: buildkernel installkernel.debug 237.ORDER: buildkernel reinstallkernel 238.ORDER: buildkernel reinstallkernel.debug 239.ORDER: kernel-toolchain buildkernel 240 241# Only sanitize PATH on FreeBSD. 242# PATH may include tools that are required to cross-build 243# on non-FreeBSD systems. 244.if ${.MAKE.OS} == "FreeBSD" 245PATH= /sbin:/bin:/usr/sbin:/usr/bin 246.endif 247MAKEOBJDIRPREFIX?= /usr/obj 248_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH:Q} ${MAKE} MK_AUTO_OBJ=no \ 249 ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \ 250 SRCCONF=${SRCCONF} SRC_ENV_CONF= \ 251 -f /dev/null -V MAKEOBJDIRPREFIX dummy 252.if !empty(_MAKEOBJDIRPREFIX) || !empty(.MAKEOVERRIDES:MMAKEOBJDIRPREFIX) 253.error MAKEOBJDIRPREFIX can only be set in environment or src-env.conf(5),\ 254 not as a global (in make.conf(5) or src.conf(5)) or command-line variable. 255.endif 256 257# We often need to use the tree's version of make to build it. 258# Choices add to complexity though. 259# We cannot blindly use a make which may not be the one we want 260# so be explicit - until all choice is removed. 261WANT_MAKE= bmake 262.if !empty(.MAKE.MODE:Mmeta) 263# 20160604 - support missing-meta,missing-filemon and performance improvements 264WANT_MAKE_VERSION= 20160604 265.else 266# 20160220 - support .dinclude for FAST_DEPEND. 267WANT_MAKE_VERSION= 20160220 268.endif 269MYMAKE= ${OBJROOT}make.${MACHINE}/${WANT_MAKE} 270.if defined(.PARSEDIR) 271HAVE_MAKE= bmake 272.else 273HAVE_MAKE= fmake 274.endif 275.if defined(ALWAYS_BOOTSTRAP_MAKE) || \ 276 ${HAVE_MAKE} != ${WANT_MAKE} || \ 277 (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION}) 278NEED_MAKE_UPGRADE= t 279.endif 280.if exists(${MYMAKE}) 281SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk 282.elif defined(NEED_MAKE_UPGRADE) 283# It may not exist yet but we may cause it to. 284# In the case of fmake, upgrade_checks may cause a newer version to be built. 285SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \ 286 -m ${.CURDIR}/share/mk 287.else 288SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk 289.endif 290 291_MAKE= PATH=${PATH:Q} MAKE_CMD="${MAKE}" ${SUB_MAKE} -f Makefile.inc1 \ 292 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} ${_MAKEARGS} 293 294.if defined(MK_META_MODE) && ${MK_META_MODE} == "yes" 295# Only allow meta mode for the whitelisted targets. See META_TGT_WHITELIST 296# above. If overridden as a make argument then don't bother trying to 297# disable it. 298.if empty(.MAKEOVERRIDES:MMK_META_MODE) 299.for _tgt in ${META_TGT_WHITELIST} 300.if make(${_tgt}) 301_CAN_USE_META_MODE?= yes 302.endif 303.endfor 304.if !defined(_CAN_USE_META_MODE) 305_MAKE+= MK_META_MODE=no 306MK_META_MODE= no 307.if defined(.PARSEDIR) 308.unexport META_MODE 309.endif 310.endif # !defined(_CAN_USE_META_MODE) 311.endif # empty(.MAKEOVERRIDES:MMK_META_MODE) 312 313.if ${MK_META_MODE} == "yes" 314.if !exists(/dev/filemon) && !defined(NO_FILEMON) && !make(showconfig) 315# Require filemon be loaded to provide a working incremental build 316.error ${.newline}ERROR: The filemon module (/dev/filemon) is not loaded. \ 317 ${.newline}ERROR: WITH_META_MODE is enabled but requires filemon for an incremental build. \ 318 ${.newline}ERROR: 'kldload filemon' or pass -DNO_FILEMON to suppress this error. 319.endif # !exists(/dev/filemon) && !defined(NO_FILEMON) 320.endif # ${MK_META_MODE} == yes 321.endif # defined(MK_META_MODE) && ${MK_META_MODE} == yes 322 323# Guess target architecture from target type, and vice versa, based on 324# historic FreeBSD practice of tending to have TARGET == TARGET_ARCH 325# expanding to TARGET == TARGET_CPUARCH in recent times, with known 326# exceptions. 327.if !defined(TARGET_ARCH) && defined(TARGET) 328# T->TA mapping is usually TARGET with arm64 the odd man out 329_TARGET_ARCH= ${TARGET:S/arm64/aarch64/:S/riscv/riscv64/:S/arm/armv7/} 330.elif !defined(TARGET) && defined(TARGET_ARCH) && \ 331 ${TARGET_ARCH} != ${MACHINE_ARCH} 332# TA->T mapping is accidentally CPUARCH with aarch64 the odd man out 333_TARGET= ${TARGET_ARCH:${__TO_CPUARCH}:C/aarch64/arm64/} 334.endif 335.if defined(TARGET) && !defined(_TARGET) 336_TARGET=${TARGET} 337.endif 338.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH) 339_TARGET_ARCH=${TARGET_ARCH} 340.endif 341# for historical compatibility for xdev targets 342.if defined(XDEV) 343_TARGET= ${XDEV} 344.endif 345.if defined(XDEV_ARCH) 346_TARGET_ARCH= ${XDEV_ARCH} 347.endif 348# Some targets require a set TARGET/TARGET_ARCH, check before the default 349# MACHINE and after the compatibility handling. 350.if !defined(_TARGET) || !defined(_TARGET_ARCH) 351${XTGTS}: _assert_target 352.endif 353# Otherwise, default to current machine type and architecture. 354_TARGET?= ${MACHINE} 355_TARGET_ARCH?= ${MACHINE_ARCH} 356 357.if make(native-xtools*) 358NXB_TARGET:= ${_TARGET} 359NXB_TARGET_ARCH:= ${_TARGET_ARCH} 360_TARGET= ${MACHINE} 361_TARGET_ARCH= ${MACHINE_ARCH} 362_MAKE+= NXB_TARGET=${NXB_TARGET} \ 363 NXB_TARGET_ARCH=${NXB_TARGET_ARCH} 364.endif 365 366.if make(print-dir) 367.SILENT: 368.endif 369 370_assert_target: .PHONY .MAKE 371.for _tgt in ${XTGTS} 372.if make(${_tgt}) 373 @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${_tgt}\" target" 374 @false 375.endif 376.endfor 377 378# 379# Make sure we have an up-to-date make(1). Only world and buildworld 380# should do this as those are the initial targets used for upgrades. 381# The user can define ALWAYS_CHECK_MAKE to have this check performed 382# for all targets. 383# 384.if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR) 385${TGTS}: upgrade_checks 386.else 387buildworld: upgrade_checks 388.endif 389 390# 391# Handle the user-driven targets, using the source relative mk files. 392# 393 394tinderbox toolchains kernel-toolchains: .MAKE 395${TGTS}: .PHONY .MAKE 396 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} 397 398# The historic default "all" target creates files which may cause stale 399# or (in the cross build case) unlinkable results. Fail with an error 400# when no target is given. The users can explicitly specify "all" 401# if they want the historic behavior. 402.MAIN: _guard 403 404_guard: .PHONY 405 @echo 406 @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)." 407 @echo 408 @false 409 410STARTTIME!= LC_ALL=C date 411CHECK_TIME!= cmp=`mktemp`; find ${.CURDIR}/sys/sys/param.h -newer "$$cmp" && rm "$$cmp"; echo 412.if !empty(CHECK_TIME) 413.error check your date/time: ${STARTTIME} 414.endif 415 416.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR) 417# 418# world 419# 420# Attempt to rebuild and reinstall everything. This target is not to be 421# used for upgrading an existing FreeBSD system, because the kernel is 422# not included. One can argue that this target doesn't build everything 423# then. 424# 425world: upgrade_checks .PHONY 426 @echo "--------------------------------------------------------------" 427 @echo ">>> make world started on ${STARTTIME}" 428 @echo "--------------------------------------------------------------" 429.if target(pre-world) 430 @echo 431 @echo "--------------------------------------------------------------" 432 @echo ">>> Making 'pre-world' target" 433 @echo "--------------------------------------------------------------" 434 ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world 435.endif 436 ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld 437 ${_+_}@cd ${.CURDIR}; ${_MAKE} installworld MK_META_MODE=no 438.if target(post-world) 439 @echo 440 @echo "--------------------------------------------------------------" 441 @echo ">>> Making 'post-world' target" 442 @echo "--------------------------------------------------------------" 443 ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world 444.endif 445 @echo 446 @echo "--------------------------------------------------------------" 447 @echo ">>> make world completed on `LC_ALL=C date`" 448 @echo " (started ${STARTTIME})" 449 @echo "--------------------------------------------------------------" 450.else 451world: .PHONY 452 @echo "WARNING: make world will overwrite your existing FreeBSD" 453 @echo "installation without also building and installing a new" 454 @echo "kernel. This can be dangerous. Please read the handbook," 455 @echo "'Rebuilding world', for how to upgrade your system." 456 @echo "Define DESTDIR to where you want to install FreeBSD," 457 @echo "including /, to override this warning and proceed as usual." 458 @echo "" 459 @echo "Bailing out now..." 460 @false 461.endif 462 463# 464# kernel 465# 466# Short hand for `make buildkernel installkernel' 467# 468kernel: buildkernel installkernel .PHONY 469 470# 471# Perform a few tests to determine if the installed tools are adequate 472# for building the world. 473# 474upgrade_checks: .PHONY 475.if defined(NEED_MAKE_UPGRADE) 476 @${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,}) 477.endif 478 479# 480# Upgrade make(1) to the current version using the installed 481# headers, libraries and tools. Also, allow the location of 482# the system bsdmake-like utility to be overridden. 483# 484MMAKEENV= \ 485 DESTDIR= \ 486 INSTALL="sh ${.CURDIR}/tools/install.sh" 487MMAKE= ${MMAKEENV} ${MAKE} \ 488 OBJTOP=${MYMAKE:H}/obj \ 489 OBJROOT='$${OBJTOP}/' \ 490 MAKEOBJDIRPREFIX= \ 491 MK_MAN=no -DNO_SHARED \ 492 -DNO_CPU_CFLAGS MK_WERROR=no \ 493 -DNO_SUBDIR \ 494 DESTDIR= PROGNAME=${MYMAKE:T} 495 496bmake: .PHONY 497 @echo 498 @echo "--------------------------------------------------------------" 499 @echo ">>> Building an up-to-date ${.TARGET}(1)" 500 @echo "--------------------------------------------------------------" 501 ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ 502 ${MMAKE} obj; \ 503 ${MMAKE} depend; \ 504 ${MMAKE} all; \ 505 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= 506 507regress: .PHONY 508 @echo "'make regress' has been renamed 'make check'" | /usr/bin/fmt 509 @false 510 511tinderbox toolchains kernel-toolchains kernels worlds: upgrade_checks 512 513tinderbox: .PHONY 514 @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe 515 516toolchains: .PHONY 517 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe 518 519kernel-toolchains: .PHONY 520 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe 521 522kernels: .PHONY 523 @cd ${.CURDIR}; ${SUB_MAKE} universe -DWITHOUT_WORLDS 524 525worlds: .PHONY 526 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildworld universe 527 528# 529# universe 530# 531# Attempt to rebuild *everything* for all supported architectures, 532# with a reasonable chance of success, regardless of how old your 533# existing system is. 534# 535.if make(universe) || make(universe_kernels) || make(tinderbox) || \ 536 make(targets) || make(universe-toolchain) 537# 538# Don't build rarely used, semi-supported architectures unless requested. 539# 540.if defined(EXTRA_TARGETS) 541# armv6's importance has waned enough to make building it the exception rather 542# than the rule. 543EXTRA_ARCHES_arm= armv6 544# powerpcspe excluded from main list until clang fixed 545EXTRA_ARCHES_powerpc= powerpcspe 546.endif 547TARGETS?= ${TARGET_MACHINE_LIST} 548_UNIVERSE_TARGETS= ${TARGETS} 549.for target in ${TARGETS} 550TARGET_ARCHES_${target}= ${MACHINE_ARCH_LIST_${target}} 551.endfor 552 553.if defined(USE_GCC_TOOLCHAINS) 554_DEFAULT_GCC_VERSION= gcc14 555_GCC_VERSION= ${"${USE_GCC_TOOLCHAINS:Mgcc*}" != "":?${USE_GCC_TOOLCHAINS}:${_DEFAULT_GCC_VERSION}} 556TOOLCHAINS_amd64= amd64-${_GCC_VERSION} 557TOOLCHAINS_arm= armv6-${_GCC_VERSION} armv7-${_GCC_VERSION} 558TOOLCHAIN_armv7= armv7-${_GCC_VERSION} 559TOOLCHAINS_arm64= aarch64-${_GCC_VERSION} 560TOOLCHAINS_i386= i386-${_GCC_VERSION} 561TOOLCHAINS_powerpc= powerpc-${_GCC_VERSION} powerpc64-${_GCC_VERSION} 562TOOLCHAIN_powerpc64= powerpc64-${_GCC_VERSION} 563TOOLCHAINS_riscv= riscv64-${_GCC_VERSION} 564.endif 565 566# If a target is using an external toolchain, set MAKE_PARAMS to enable use 567# of the toolchain. If the external toolchain is missing, exclude the target 568# from universe. 569.for target in ${_UNIVERSE_TARGETS} 570.if !empty(TOOLCHAINS_${target}) 571.for toolchain in ${TOOLCHAINS_${target}} 572.if !exists(/usr/local/share/toolchains/${toolchain}.mk) 573_UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:N${target}} 574universe: universe_${toolchain}_skip .PHONY 575universe_epilogue: universe_${toolchain}_skip .PHONY 576universe_${toolchain}_skip: universe_prologue .PHONY 577 @echo ">> ${target} skipped - install ${toolchain} port or package to build" 578.endif 579.endfor 580.for arch in ${TARGET_ARCHES_${target}} 581TOOLCHAIN_${arch}?= ${TOOLCHAINS_${target}:[1]} 582MAKE_PARAMS_${arch}?= CROSS_TOOLCHAIN=${TOOLCHAIN_${arch}} 583.endfor 584.endif 585.endfor 586 587UNIVERSE_TARGET?= buildworld 588KERNSRCDIR?= ${.CURDIR}/sys 589 590.if ${.MAKE.OS} == "FreeBSD" 591UNIVERSE_TOOLCHAIN_TARGET?= ${MACHINE} 592UNIVERSE_TOOLCHAIN_TARGET_ARCH?= ${MACHINE_ARCH} 593.else 594# MACHINE/MACHINE_ARCH may not follow the same naming as us (e.g. x86_64 vs 595# amd64) on non-FreeBSD. Rather than attempt to sanitise it, arbitrarily use 596# amd64 as the default universe toolchain target. 597UNIVERSE_TOOLCHAIN_TARGET?= amd64 598UNIVERSE_TOOLCHAIN_TARGET_ARCH?= amd64 599.endif 600 601targets: .PHONY 602 @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" 603.for target in ${TARGETS} 604.for target_arch in ${TARGET_ARCHES_${target}} 605 @echo " ${target}/${target_arch}" 606.endfor 607.endfor 608 609.if defined(DOING_TINDERBOX) 610FAILFILE=${.CURDIR}/_.tinderbox.failed 611MAKEFAIL=tee -a ${FAILFILE} 612.else 613MAKEFAIL=cat 614.endif 615 616universe_prologue: upgrade_checks 617universe: universe_prologue 618universe_prologue: .PHONY 619 @echo "--------------------------------------------------------------" 620 @echo ">>> make universe started on ${STARTTIME}" 621 @echo "--------------------------------------------------------------" 622.if defined(DOING_TINDERBOX) 623 @rm -f ${FAILFILE} 624.endif 625 626universe-toolchain: .PHONY universe_prologue 627 @echo "--------------------------------------------------------------" 628 @echo "> Toolchain bootstrap started on `LC_ALL=C date`" 629 @echo "--------------------------------------------------------------" 630 ${_+_}@cd ${.CURDIR}; \ 631 env PATH=${PATH:Q} ${SUB_MAKE} ${JFLAG} kernel-toolchain \ 632 TARGET=${UNIVERSE_TOOLCHAIN_TARGET} \ 633 TARGET_ARCH=${UNIVERSE_TOOLCHAIN_TARGET_ARCH} \ 634 OBJTOP="${HOST_OBJTOP}" \ 635 WITHOUT_SYSTEM_COMPILER=yes \ 636 WITHOUT_SYSTEM_LINKER=yes \ 637 TOOLS_PREFIX_UNDEF= \ 638 kernel-toolchain \ 639 MK_LLVM_TARGET_ALL=yes \ 640 > _.${.TARGET} 2>&1 || \ 641 (echo "${.TARGET} failed," \ 642 "check _.${.TARGET} for details" | \ 643 ${MAKEFAIL}; false) 644 @if [ ! -e "${HOST_OBJTOP}/tmp/usr/bin/cc" ]; then \ 645 echo "Missing host compiler at ${HOST_OBJTOP}/tmp/usr/bin/cc?" >&2; \ 646 false; \ 647 fi 648 @if [ ! -e "${HOST_OBJTOP}/tmp/usr/bin/ld" ]; then \ 649 echo "Missing host linker at ${HOST_OBJTOP}/tmp/usr/bin/ld?" >&2; \ 650 false; \ 651 fi 652 @echo "--------------------------------------------------------------" 653 @echo "> Toolchain bootstrap completed on `LC_ALL=C date`" 654 @echo "--------------------------------------------------------------" 655 656.for target in ${_UNIVERSE_TARGETS} 657universe: universe_${target} 658universe_epilogue: universe_${target} 659universe_${target}: universe_${target}_prologue .PHONY 660universe_${target}_prologue: universe_prologue .PHONY 661 @echo ">> ${target} started on `LC_ALL=C date`" 662universe_${target}_worlds: .PHONY 663 664.if !make(targets) && !make(universe-toolchain) 665.for target_arch in ${TARGET_ARCHES_${target}} 666.if !defined(_need_clang_${target}_${target_arch}) 667_need_clang_${target}_${target_arch} != \ 668 env TARGET=${target} TARGET_ARCH=${target_arch} \ 669 ${SUB_MAKE} -C ${.CURDIR} -f Makefile.inc1 test-system-compiler \ 670 ${MAKE_PARAMS_${target_arch}} -V MK_CLANG_BOOTSTRAP 2>/dev/null || \ 671 echo unknown 672.export _need_clang_${target}_${target_arch} 673.endif 674.if !defined(_need_lld_${target}_${target_arch}) 675_need_lld_${target}_${target_arch} != \ 676 env TARGET=${target} TARGET_ARCH=${target_arch} \ 677 ${SUB_MAKE} -C ${.CURDIR} -f Makefile.inc1 test-system-linker \ 678 ${MAKE_PARAMS_${target_arch}} -V MK_LLD_BOOTSTRAP 2>/dev/null || \ 679 echo unknown 680.export _need_lld_${target}_${target_arch} 681.endif 682# Setup env for each arch to use the one clang. 683.if defined(_need_clang_${target}_${target_arch}) && \ 684 ${_need_clang_${target}_${target_arch}} == "yes" 685# No check on existing XCC or CROSS_BINUTILS_PREFIX, etc, is needed since 686# we use the test-system-compiler logic to determine if clang needs to be 687# built. It will be no from that logic if already using an external 688# toolchain or /usr/bin/cc. 689# XXX: Passing HOST_OBJTOP into the PATH would allow skipping legacy, 690# bootstrap-tools, and cross-tools. Need to ensure each tool actually 691# supports all TARGETS though. 692# For now we only pass UNIVERSE_TOOLCHAIN_PATH which will be added at the end 693# of STRICTTMPPATH to ensure that the target-specific binaries come first. 694MAKE_PARAMS_${target_arch}+= \ 695 XCC="${HOST_OBJTOP}/tmp/usr/bin/cc" \ 696 XCXX="${HOST_OBJTOP}/tmp/usr/bin/c++" \ 697 XCPP="${HOST_OBJTOP}/tmp/usr/bin/cpp" \ 698 UNIVERSE_TOOLCHAIN_PATH=${HOST_OBJTOP}/tmp/usr/bin 699.endif 700.if defined(_need_lld_${target}_${target_arch}) && \ 701 ${_need_lld_${target}_${target_arch}} == "yes" 702MAKE_PARAMS_${target_arch}+= \ 703 XLD="${HOST_OBJTOP}/tmp/usr/bin/ld" 704.endif 705.endfor 706.endif # !make(targets) 707 708.if ${__DO_WORLDS} == "yes" 709universe_${target}_done: universe_${target}_worlds .PHONY 710.for target_arch in ${TARGET_ARCHES_${target}} 711universe_${target}_worlds: universe_${target}_${target_arch} .PHONY 712.if (defined(_need_clang_${target}_${target_arch}) && \ 713 ${_need_clang_${target}_${target_arch}} == "yes") || \ 714 (defined(_need_lld_${target}_${target_arch}) && \ 715 ${_need_lld_${target}_${target_arch}} == "yes") 716universe_${target}_${target_arch}: universe-toolchain 717universe_${target}_prologue: universe-toolchain 718.endif 719universe_${target}_${target_arch}: universe_${target}_prologue .MAKE .PHONY 720 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`" 721 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ 722 ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \ 723 TARGET=${target} \ 724 TARGET_ARCH=${target_arch} \ 725 ${MAKE_PARAMS_${target_arch}} \ 726 > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \ 727 (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \ 728 "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \ 729 ${MAKEFAIL})) 730 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`" 731.endfor 732.endif # ${__DO_WORLDS} == "yes" 733 734.if ${__DO_KERNELS} == "yes" 735universe_${target}_done: universe_${target}_kernels .PHONY 736universe_${target}_kernels: universe_${target}_worlds .PHONY 737universe_${target}_kernels: universe_${target}_prologue .MAKE .PHONY 738 @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \ 739 universe_kernels 740.endif # ${__DO_KERNELS} == "yes" 741 742# Tell the user the worlds and kernels have completed 743universe_${target}: universe_${target}_done 744universe_${target}_done: 745 @echo ">> ${target} completed on `LC_ALL=C date`" 746.endfor 747.if make(universe_kernconfs) || make(universe_kernels) 748.if !defined(TARGET) 749TARGET!= uname -m 750.endif 751universe_kernels_prologue: .PHONY 752 @echo ">> ${TARGET} kernels started on `LC_ALL=C date`" 753universe_kernels: universe_kernconfs .PHONY 754 @echo ">> ${TARGET} kernels completed on `LC_ALL=C date`" 755.if defined(MAKE_ALL_KERNELS) 756_THINNER=cat 757.elif defined(MAKE_LINT_KERNELS) 758_THINNER=grep 'LINT' || true 759.else 760_THINNER=xargs grep -L "^.NO_UNIVERSE" || true 761.endif 762KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \ 763 find [[:upper:][:digit:]]*[[:upper:][:digit:]] \ 764 -type f -maxdepth 0 \ 765 ! -name DEFAULTS ! -name NOTES | \ 766 ${_THINNER} 767universe_kernconfs: universe_kernels_prologue .PHONY 768.for kernel in ${KERNCONFS} 769TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \ 770 env PATH=${HOST_OBJTOP}/tmp/legacy/bin:${PATH:Q} \ 771 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \ 772 grep -v WARNING: | cut -f 2 773.if empty(TARGET_ARCH_${kernel}) 774.error Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old. 775.endif 776universe_kernconfs_${TARGET_ARCH_${kernel}}: universe_kernconf_${TARGET}_${kernel} 777universe_kernconf_${TARGET}_${kernel}: .MAKE 778 @echo ">> ${TARGET}.${TARGET_ARCH_${kernel}} ${kernel} kernel started on `LC_ALL=C date`" 779 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ 780 ${SUB_MAKE} ${JFLAG} buildkernel \ 781 TARGET=${TARGET} \ 782 TARGET_ARCH=${TARGET_ARCH_${kernel}} \ 783 ${MAKE_PARAMS_${TARGET_ARCH_${kernel}}} \ 784 KERNCONF=${kernel} \ 785 > _.${TARGET}.${kernel} 2>&1 || \ 786 (echo "${TARGET} ${kernel} kernel failed," \ 787 "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL})) 788 @echo ">> ${TARGET}.${TARGET_ARCH_${kernel}} ${kernel} kernel completed on `LC_ALL=C date`" 789.endfor 790.for target_arch in ${TARGET_ARCHES_${TARGET}} 791universe_kernconfs: universe_kernconfs_${target_arch} .PHONY 792universe_kernconfs_${target_arch}: 793.endfor 794.endif # make(universe_kernels) 795universe: universe_epilogue 796universe_epilogue: .PHONY 797 @echo "--------------------------------------------------------------" 798 @echo ">>> make universe completed on `LC_ALL=C date`" 799 @echo " (started ${STARTTIME})" 800 @echo "--------------------------------------------------------------" 801.if defined(DOING_TINDERBOX) 802 @if [ -e ${FAILFILE} ] ; then \ 803 echo "Tinderbox failed:" ;\ 804 cat ${FAILFILE} ;\ 805 exit 1 ;\ 806 fi 807.endif 808.endif 809 810.if defined(.PARSEDIR) 811# This makefile does not run in meta mode 812.MAKE.MODE= normal 813# Normally the things we run from here don't either. 814# Using -DWITH_META_MODE 815# we can buildworld with meta files created which are useful 816# for debugging, but without any of the rest of a meta mode build. 817MK_DIRDEPS_BUILD= no 818MK_STAGING= no 819# tell meta.autodep.mk to not even think about updating anything. 820UPDATE_DEPENDFILE= NO 821.if !make(showconfig) 822.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE 823.endif 824 825.if make(universe) 826# we do not want a failure of one branch abort all. 827MAKE_JOB_ERROR_TOKEN= no 828.export MAKE_JOB_ERROR_TOKEN 829.endif 830.endif # bmake 831 832.endif # DIRDEPS_BUILD 833