1# 2# $FreeBSD$ 3# 4# Make command line options: 5# -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir 6# -DNO_CLEAN do not clean at all 7# -DDB_FROM_SRC use the user/group databases in src/etc instead of 8# the system database when installing. 9# -DNO_SHARE do not go into share subdir 10# -DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ} 11# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel 12# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel 13# -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel 14# -DNO_ROOT install without using root privilege 15# -DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects 16# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 17# LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list 18# LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target 19# LOCAL_MTREE="list of mtree files" to process to allow local directories 20# to be created before files are installed 21# LOCAL_LEGACY_DIRS="list of dirs" to add additional dirs to the legacy 22# target 23# LOCAL_BSTOOL_DIRS="list of dirs" to add additional dirs to the 24# bootstrap-tools target 25# LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools 26# target 27# LOCAL_XTOOL_DIRS="list of dirs" to add additional dirs to the 28# cross-tools target 29# METALOG="path to metadata log" to write permission and ownership 30# when NO_ROOT is set. (default: ${DESTDIR}/${DISTDIR}/METALOG, 31# check /etc/make.conf for DISTDIR) 32# TARGET="machine" to crossbuild world for a different machine type 33# TARGET_ARCH= may be required when a TARGET supports multiple endians 34# BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL}) 35# WORLD_FLAGS= additional flags to pass to make(1) during buildworld 36# KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel 37# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. 38# All libraries and includes, and some build tools will still build. 39 40# 41# The intended user-driven targets are: 42# buildworld - rebuild *everything*, including glue to help do upgrades 43# installworld- install everything built by "buildworld" 44# checkworld - run test suite on installed world 45# doxygen - build API documentation of the kernel 46# 47# Standard targets (not defined here) are documented in the makefiles in 48# /usr/share/mk. These include: 49# obj depend all install clean cleandepend cleanobj 50 51.if !defined(TARGET) || !defined(TARGET_ARCH) 52.error Both TARGET and TARGET_ARCH must be defined. 53.endif 54 55.if make(showconfig) || make(test-system-*) 56_MKSHOWCONFIG= t 57.endif 58 59SRCDIR?= ${.CURDIR} 60LOCALBASE?= /usr/local 61TIME_ENV ?= time env 62 63.include "share/mk/src.tools.mk" 64 65# Cross toolchain changes must be in effect before bsd.compiler.mk 66# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes. 67.if defined(CROSS_TOOLCHAIN) 68.if exists(${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk) 69.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" 70.elif exists(${CROSS_TOOLCHAIN}) 71.include "${CROSS_TOOLCHAIN}" 72.else 73.error CROSS_TOOLCHAIN ${CROSS_TOOLCHAIN} not found 74.endif 75CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" 76.endif 77.if defined(CROSS_TOOLCHAIN_PREFIX) 78CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 79.endif 80 81XCOMPILERS= CC CXX CPP 82.for COMPILER in ${XCOMPILERS} 83.if defined(CROSS_COMPILER_PREFIX) 84X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}} 85.else 86X${COMPILER}?= ${${COMPILER}} 87.endif 88.endfor 89# If a full path to an external cross compiler is given, don't build 90# a cross compiler. 91.if ${XCC:N${CCACHE_BIN}:M/*} 92MK_CLANG_BOOTSTRAP= no 93# Make sure sub-makes see the option as disabled so the hack in bsd.sys.mk to 94# work around incompatible headers in Clang's resource directory is enabled. 95.MAKEOVERRIDES+= MK_CLANG_BOOTSTRAP 96.endif 97 98# Pull in compiler metadata from buildworld/toolchain if possible to avoid 99# running CC from bsd.compiler.mk. 100.if make(installworld) || make(install) || make(distributeworld) || \ 101 make(stageworld) 102.-include "${OBJTOP}/toolchain-metadata.mk" 103.if !defined(_LOADED_TOOLCHAIN_METADATA) 104.error A build is required first. You may have the wrong MAKEOBJDIRPREFIX set. 105.endif 106.endif 107 108# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early. Pull it from the 109# tree to be friendlier to foreign OS builds. It's safe to do so unconditionally 110# here since we will always have the right make, unlike in src/Makefile 111# Don't include bsd.linker.mk yet until XBINUTILS is handled (after src.opts.mk) 112_NO_INCLUDE_LINKERMK= t 113# We also want the X_COMPILER* variables if we are using an external toolchain. 114_WANT_TOOLCHAIN_CROSS_VARS= t 115.include "share/mk/bsd.compiler.mk" 116.undef _NO_INCLUDE_LINKERMK 117.undef _WANT_TOOLCHAIN_CROSS_VARS 118# src.opts.mk depends on COMPILER_FEATURES 119.include "share/mk/src.opts.mk" 120 121.if ${TARGET} == ${MACHINE} 122TARGET_CPUTYPE?=${CPUTYPE} 123.else 124TARGET_CPUTYPE?= 125.endif 126.if !empty(TARGET_CPUTYPE) 127_TARGET_CPUTYPE=${TARGET_CPUTYPE} 128.else 129_TARGET_CPUTYPE=dummy 130.endif 131.if ${TARGET} == "arm" 132.if ${TARGET_ARCH:Marmv[67]*} != "" && ${TARGET_CPUTYPE:M*soft*} == "" 133TARGET_TRIPLE_ABI= gnueabihf 134.else 135TARGET_TRIPLE_ABI= gnueabi 136.endif 137.endif 138MACHINE_TRIPLE_ABI?= unknown 139MACHINE_TRIPLE?=${MACHINE_ARCH:S/amd64/x86_64/:C/sf$//}-${MACHINE_TRIPLE_ABI}-freebsd${OS_REVISION} 140TARGET_TRIPLE_ABI?= unknown 141TARGET_TRIPLE?= ${TARGET_ARCH:S/amd64/x86_64/:C/sf$//}-${TARGET_TRIPLE_ABI}-freebsd${OS_REVISION} 142KNOWN_ARCHES?= aarch64/arm64 \ 143 amd64 \ 144 armv6/arm \ 145 armv7/arm \ 146 i386 \ 147 powerpc \ 148 powerpc64/powerpc \ 149 powerpc64le/powerpc \ 150 powerpcspe/powerpc \ 151 riscv64/riscv \ 152 riscv64sf/riscv 153 154.if ${TARGET} == ${TARGET_ARCH} 155_t= ${TARGET} 156.else 157_t= ${TARGET_ARCH}/${TARGET} 158.endif 159.for _t in ${_t} 160.if empty(KNOWN_ARCHES:M${_t}) 161.error Unknown target ${TARGET_ARCH}:${TARGET}. 162.endif 163.endfor 164 165.if ${.MAKE.OS} != "FreeBSD" 166CROSSBUILD_HOST=${.MAKE.OS} 167.if ${.MAKE.OS} != "Linux" && ${.MAKE.OS} != "Darwin" 168.warning Unsupported crossbuild system: ${.MAKE.OS}. Build will probably fail! 169.endif 170# We need to force NO_ROOT/DB_FROM_SRC builds when building on other operating 171# systems since the BSD.foo.dist specs contain users and groups that do not 172# exist by default on a Linux/MacOS system. 173NO_ROOT:= 1 174DB_FROM_SRC:= 1 175.export NO_ROOT 176.endif 177 178# If all targets are disabled for system llvm then don't expect it to work 179# for cross-builds. 180.if !defined(TOOLS_PREFIX) && ${MK_LLVM_TARGET_ALL} == "no" && \ 181 ${MACHINE} != ${TARGET} && ${MACHINE_ARCH} != ${TARGET_ARCH} && \ 182 !make(showconfig) 183MK_SYSTEM_COMPILER= no 184MK_SYSTEM_LINKER= no 185.endif 186 187# Handle external binutils. 188.if defined(CROSS_TOOLCHAIN_PREFIX) 189CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 190.endif 191XBINUTILS= AS AR ELFCTL LD NM OBJCOPY RANLIB SIZE STRINGS STRIPBIN 192.for BINUTIL in ${XBINUTILS} 193.if defined(CROSS_BINUTILS_PREFIX) && \ 194 exists(${CROSS_BINUTILS_PREFIX}/${${BINUTIL}}) 195X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX:C,/*$,,}/${${BINUTIL}} 196.else 197X${BINUTIL}?= ${${BINUTIL}} 198.endif 199.endfor 200 201# If a full path to an external linker is given, don't build lld. 202.if ${XLD:M/*} 203MK_LLD_BOOTSTRAP= no 204.endif 205 206# We also want the X_LINKER* variables if we are using an external toolchain. 207_WANT_TOOLCHAIN_CROSS_VARS= t 208.include "share/mk/bsd.linker.mk" 209.undef _WANT_TOOLCHAIN_CROSS_VARS 210 211# Begin WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD 212 213# WITH_SYSTEM_COMPILER - Pull in needed values and make a decision. 214 215# Check if there is a local compiler that can satisfy as an external compiler. 216# Which compiler is expected to be used? 217.if ${MK_CLANG_BOOTSTRAP} == "yes" 218WANT_COMPILER_TYPE= clang 219.else 220WANT_COMPILER_TYPE= 221.endif 222 223.if !defined(WANT_COMPILER_FREEBSD_VERSION) && !make(showconfig) && \ 224 !make(test-system-linker) 225.if ${WANT_COMPILER_TYPE} == "clang" 226WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h 227WANT_COMPILER_FREEBSD_VERSION!= \ 228 awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \ 229 ${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown 230WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc 231WANT_COMPILER_VERSION!= \ 232 awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \ 233 ${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown 234.endif 235.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION 236.endif # !defined(WANT_COMPILER_FREEBSD_VERSION) 237 238# It needs to be the same revision as we would build for the bootstrap. 239# If the expected vs CC is different then we can't skip. 240# GCC cannot be used for cross-arch yet. For clang we pass -target later if 241# TARGET_ARCH!=MACHINE_ARCH. 242.if ${MK_SYSTEM_COMPILER} == "yes" && \ 243 defined(WANT_COMPILER_FREEBSD_VERSION) && \ 244 ${MK_CLANG_BOOTSTRAP} == "yes" && \ 245 !make(xdev*) && \ 246 ${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \ 247 (${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \ 248 ${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \ 249 ${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION} 250# Everything matches, disable the bootstrap compiler. 251MK_CLANG_BOOTSTRAP= no 252USING_SYSTEM_COMPILER= yes 253.endif # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} 254 255# WITH_SYSTEM_LD - Pull in needed values and make a decision. 256 257# Check if there is a local linker that can satisfy as an external linker. 258# Which linker is expected to be used? 259.if ${MK_LLD_BOOTSTRAP} == "yes" 260WANT_LINKER_TYPE= lld 261.else 262WANT_LINKER_TYPE= 263.endif 264 265.if !defined(WANT_LINKER_FREEBSD_VERSION) && !make(showconfig) && \ 266 !make(test-system-compiler) 267.if ${WANT_LINKER_TYPE} == "lld" 268WANT_LINKER_FREEBSD_VERSION_FILE= lib/clang/include/lld/Common/Version.inc 269WANT_LINKER_FREEBSD_VERSION!= \ 270 awk '$$2 == "LLD_FREEBSD_VERSION" {print $$3}' \ 271 ${SRCDIR}/${WANT_LINKER_FREEBSD_VERSION_FILE} || echo unknown 272WANT_LINKER_VERSION_FILE= lib/clang/include/lld/Common/Version.inc 273WANT_LINKER_VERSION!= \ 274 awk '$$2 == "LLD_VERSION_STRING" {gsub("\"", "", $$3); split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \ 275 ${SRCDIR}/${WANT_LINKER_VERSION_FILE} || echo unknown 276.else 277WANT_LINKER_FREEBSD_VERSION_FILE= 278WANT_LINKER_FREEBSD_VERSION= 279.endif 280.export WANT_LINKER_FREEBSD_VERSION WANT_LINKER_VERSION 281.endif # !defined(WANT_LINKER_FREEBSD_VERSION) 282 283.if ${MK_SYSTEM_LINKER} == "yes" && \ 284 defined(WANT_LINKER_FREEBSD_VERSION) && \ 285 (${MK_LLD_BOOTSTRAP} == "yes") && \ 286 !make(xdev*) && \ 287 ${X_LINKER_TYPE} == ${WANT_LINKER_TYPE} && \ 288 ${X_LINKER_VERSION} == ${WANT_LINKER_VERSION} && \ 289 ${X_LINKER_FREEBSD_VERSION} == ${WANT_LINKER_FREEBSD_VERSION} 290# Everything matches, disable the bootstrap linker. 291MK_LLD_BOOTSTRAP= no 292USING_SYSTEM_LINKER= yes 293.endif # ${WANT_LINKER_TYPE} == ${LINKER_TYPE} 294 295# WITH_SYSTEM_COMPILER / WITH_SYSTEM_LINKER - Handle defaults and debug. 296USING_SYSTEM_COMPILER?= no 297USING_SYSTEM_LINKER?= no 298 299TEST_SYSTEM_COMPILER_VARS= \ 300 USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \ 301 MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP \ 302 WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \ 303 WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \ 304 CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \ 305 COMPILER_FREEBSD_VERSION \ 306 XCC X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \ 307 X_COMPILER_FREEBSD_VERSION 308TEST_SYSTEM_LINKER_VARS= \ 309 USING_SYSTEM_LINKER MK_SYSTEM_LINKER \ 310 MK_LLD_BOOTSTRAP \ 311 WANT_LINKER_TYPE WANT_LINKER_VERSION WANT_LINKER_VERSION_FILE \ 312 WANT_LINKER_FREEBSD_VERSION WANT_LINKER_FREEBSD_VERSION_FILE \ 313 LD LINKER_TYPE LINKER_FEATURES LINKER_VERSION \ 314 LINKER_FREEBSD_VERSION \ 315 XLD X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION \ 316 X_LINKER_FREEBSD_VERSION 317 318.for _t in compiler linker 319test-system-${_t}: .PHONY 320.for v in ${TEST_SYSTEM_${_t:tu}_VARS} 321 ${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}" 322.endfor 323.endfor 324.if (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \ 325 make(toolchain) || make(_cross-tools)) 326.if ${USING_SYSTEM_COMPILER} == "yes" 327.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree. Not bootstrapping a cross-compiler. 328.elif ${MK_CLANG_BOOTSTRAP} == "yes" 329.info SYSTEM_COMPILER: libclang will be built for bootstrapping a cross-compiler. 330.endif 331.if ${USING_SYSTEM_LINKER} == "yes" 332.info SYSTEM_LINKER: Determined that LD=${LD} matches the source tree. Not bootstrapping a cross-linker. 333.elif ${MK_LLD_BOOTSTRAP} == "yes" 334.info SYSTEM_LINKER: libclang will be built for bootstrapping a cross-linker. 335.endif 336.endif 337 338# End WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD 339 340# Store some compiler metadata for use in installworld where we don't 341# want to invoke CC at all. 342_TOOLCHAIN_METADATA_VARS= COMPILER_VERSION \ 343 COMPILER_TYPE \ 344 COMPILER_FEATURES \ 345 COMPILER_FREEBSD_VERSION \ 346 COMPILER_RESOURCE_DIR \ 347 LINKER_VERSION \ 348 LINKER_FEATURES \ 349 LINKER_TYPE \ 350 LINKER_FREEBSD_VERSION 351toolchain-metadata.mk: .PHONY .META 352 @: > ${.TARGET} 353 @echo ".info Using cached toolchain metadata from build at $$(hostname) on $$(date)" \ 354 > ${.TARGET} 355 @echo "_LOADED_TOOLCHAIN_METADATA=t" >> ${.TARGET} 356.for v in ${_TOOLCHAIN_METADATA_VARS} 357 @echo "${v}=${${v}}" >> ${.TARGET} 358 @echo "X_${v}=${X_${v}}" >> ${.TARGET} 359.endfor 360 @echo ".export ${_TOOLCHAIN_METADATA_VARS}" >> ${.TARGET} 361 @echo ".export ${_TOOLCHAIN_METADATA_VARS:C,^,X_,}" >> ${.TARGET} 362 363 364# We must do lib/ and libexec/ before bin/ in case of a mid-install error to 365# keep the users system reasonably usable. For static->dynamic root upgrades, 366# we don't want to install a dynamic binary without rtld and the needed 367# libraries. More commonly, for dynamic root, we don't want to install a 368# binary that requires a newer library version that hasn't been installed yet. 369# This ordering is not a guarantee though. The only guarantee of a working 370# system here would require fine-grained ordering of all components based 371# on their dependencies. 372.if !empty(SUBDIR_OVERRIDE) 373SUBDIR= ${SUBDIR_OVERRIDE} 374.else 375SUBDIR= lib libexec 376# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR 377# of a LOCAL_DIRS directory. This allows LOCAL_DIRS=foo and 378# LOCAL_LIB_DIRS=foo/lib to behave as expected. 379.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|} 380_REDUNDANT_LIB_DIRS+= ${LOCAL_LIB_DIRS:M${_DIR}*} 381.endfor 382.for _DIR in ${LOCAL_LIB_DIRS} 383.if ${_DIR} == ".WAIT" || (empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 384SUBDIR+= ${_DIR} 385.endif 386.endfor 387.if !defined(NO_ROOT) && (make(installworld) || make(install)) 388# Ensure libraries are installed before progressing. 389SUBDIR+=.WAIT 390.endif 391SUBDIR+=bin 392.if ${MK_CDDL} != "no" 393SUBDIR+=cddl 394.endif 395SUBDIR+=gnu include 396.if ${MK_KERBEROS} != "no" 397SUBDIR+=kerberos5 398.endif 399.if ${MK_RESCUE} != "no" 400SUBDIR+=rescue 401.endif 402SUBDIR+=sbin 403.if ${MK_CRYPT} != "no" 404SUBDIR+=secure 405.endif 406.if !defined(NO_SHARE) 407SUBDIR+=share 408.endif 409.if ${MK_BOOT} != "no" 410SUBDIR+=stand 411.endif 412SUBDIR+=sys usr.bin usr.sbin 413.if ${MK_TESTS} != "no" 414SUBDIR+= tests 415.endif 416 417# Local directories are built in parallel with the base system directories. 418# Users may insert a .WAIT directive at the beginning or elsewhere within 419# the LOCAL_DIRS and LOCAL_LIB_DIRS lists as needed. 420.for _DIR in ${LOCAL_DIRS} 421.if ${_DIR} == ".WAIT" || exists(${.CURDIR}/${_DIR}/Makefile) 422SUBDIR+= ${_DIR} 423.endif 424.endfor 425 426# We must do etc/ last as it hooks into building the man whatis file 427# by calling 'makedb' in share/man. This is only relevant for 428# install/distribute so they build the whatis file after every manpage is 429# installed. 430.if make(installworld) || make(install) 431SUBDIR+=.WAIT 432.endif 433SUBDIR+=etc 434 435.endif # !empty(SUBDIR_OVERRIDE) 436 437.if defined(NOCLEAN) 438.warning The src.conf WITHOUT_CLEAN option can now be used instead of NOCLEAN. 439MK_CLEAN:= no 440.endif 441.if defined(NO_CLEAN) 442.info The src.conf WITHOUT_CLEAN option can now be used instead of NO_CLEAN. 443MK_CLEAN:= no 444.endif 445.if defined(NO_CLEANDIR) 446CLEANDIR= clean cleandepend 447.else 448CLEANDIR= cleandir 449.endif 450 451.if defined(WORLDFAST) 452MK_CLEAN:= no 453NO_OBJWALK= t 454.endif 455 456.if ${MK_META_MODE} == "yes" 457# If filemon is used then we can rely on the build being incremental-safe. 458# The .meta files will also track the build command and rebuild should 459# it change. 460.if empty(.MAKE.MODE:Mnofilemon) 461MK_CLEAN:= no 462.endif 463.endif 464.if defined(NO_OBJWALK) || ${MK_AUTO_OBJ} == "yes" 465NO_OBJWALK= t 466NO_KERNELOBJ= t 467.endif 468.if !defined(NO_OBJWALK) 469_obj= obj 470.endif 471 472LOCAL_TOOL_DIRS?= 473PACKAGEDIR?= ${DESTDIR}/${DISTDIR} 474 475.if empty(SHELL:M*csh*) 476BUILDENV_SHELL?=${SHELL} 477.else 478BUILDENV_SHELL?=/bin/sh 479.endif 480 481.if !defined(_MKSHOWCONFIG) 482.if !defined(VCS_REVISION) || empty(VCS_REVISION) 483.if !defined(SVNVERSION_CMD) || empty(SVNVERSION_CMD) 484. for _D in ${PATH:S,:, ,g} 485. if exists(${_D}/svnversion) 486SVNVERSION_CMD?=${_D}/svnversion 487. endif 488. if exists(${_D}/svnliteversion) 489SVNVERSION_CMD?=${_D}/svnliteversion 490. endif 491. endfor 492.endif 493.if defined(SVNVERSION_CMD) && !empty(SVNVERSION_CMD) 494_VCS_REVISION?= $$(eval ${SVNVERSION_CMD} ${SRCDIR}) 495. if !empty(_VCS_REVISION) 496VCS_REVISION= $$(echo r${_VCS_REVISION}) 497.export VCS_REVISION 498. endif 499.endif 500.endif 501 502.if !defined(GIT_CMD) || empty(GIT_CMD) 503. for _P in /usr/bin /usr/local/bin 504. if exists(${_P}/git) 505GIT_CMD= ${_P}/git 506. endif 507. endfor 508.export GIT_CMD 509.endif 510 511.if !defined(OSRELDATE) 512.if exists(/usr/include/osreldate.h) 513OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 514 /usr/include/osreldate.h 515.else 516OSRELDATE= 0 517.endif 518.export OSRELDATE 519.endif 520 521# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. 522.for _V in BRANCH REVISION TYPE 523.if !defined(_${_V}) 524_${_V}!= eval $$(awk '/^${_V}=/{print}' ${SRCTOP}/sys/conf/newvers.sh); echo $$${_V} 525.export _${_V} 526.endif 527.endfor 528.if !defined(SRCRELDATE) 529SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 530 ${SRCDIR}/sys/sys/param.h 531.export SRCRELDATE 532.endif 533.if !defined(VERSION) 534VERSION= FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} 535.export VERSION 536.endif 537MAJOR_REVISION= ${_REVISION:R} 538 539.if !defined(PKG_VERSION) 540_STRTIMENOW= %Y%m%d%H%M%S 541_TIMENOW= ${_STRTIMENOW:gmtime} 542.if ${_BRANCH:MCURRENT*} || ${_BRANCH:MSTABLE*} || ${_BRANCH:MPRERELEASE*} 543EXTRA_REVISION= .snap${_TIMENOW} 544.elif ${_BRANCH:MALPHA*} 545EXTRA_REVISION= .a${_BRANCH:C/ALPHA([0-9]+).*/\1/}.${_TIMENOW} 546.elif ${_BRANCH:MBETA*} 547EXTRA_REVISION= .b${_BRANCH:C/BETA([0-9]+).*/\1/}.${_TIMENOW} 548.elif ${_BRANCH:MRC*} 549EXTRA_REVISION= .rc${_BRANCH:C/RC([0-9]+).*/\1/}.${_TIMENOW} 550.elif ${_BRANCH:M*-p*} 551EXTRA_REVISION= p${_BRANCH:C/.*-p([0-9]+$)/\1/} 552.endif 553PKG_VERSION:= ${MAJOR_REVISION}${EXTRA_REVISION:C/[[:space:]]//g} 554.endif 555.endif # !defined(PKG_VERSION) 556 557.if !defined(PKG_TIMESTAMP) 558TIMEEPOCHNOW= %s 559SOURCE_DATE_EPOCH= ${TIMEEPOCHNOW:gmtime} 560.else 561SOURCE_DATE_EPOCH= ${PKG_TIMESTAMP} 562.endif 563 564PKG_NAME_PREFIX?= FreeBSD 565PKG_MAINTAINER?= re@FreeBSD.org 566PKG_WWW?= https://www.FreeBSD.org 567.export PKG_NAME_PREFIX 568.export PKG_MAINTAINER 569.export PKG_WWW 570 571.if !defined(_MKSHOWCONFIG) 572_CPUTYPE!= MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} -f /dev/null \ 573 -m ${.CURDIR}/share/mk MK_AUTO_OBJ=no -V CPUTYPE 574.if ${_CPUTYPE} != ${_TARGET_CPUTYPE} 575.error CPUTYPE global should be set with ?=. 576.endif 577.endif 578.if make(buildworld) 579BUILD_ARCH!= uname -p 580# On some Linux systems uname -p returns "unknown" so skip this check there. 581# This check only exists to tell people to use TARGET_ARCH instead of 582# MACHINE_ARCH so skipping it when crossbuilding on non-FreeBSD should be fine. 583.if ${MACHINE_ARCH} != ${BUILD_ARCH} && ${.MAKE.OS} == "FreeBSD" 584.error To cross-build, set TARGET_ARCH. 585.endif 586.endif 587WORLDTMP?= ${OBJTOP}/tmp 588BPATH= ${CCACHE_WRAPPER_PATH_PFX}${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin:${WORLDTMP}/legacy/usr/libexec 589XPATH= ${WORLDTMP}/bin:${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin 590 591# When building we want to find the cross tools before the host tools in ${BPATH}. 592# We also need to add UNIVERSE_TOOLCHAIN_PATH so that we can find the shared 593# toolchain files (clang, lld, etc.) during make universe/tinderbox 594STRICTTMPPATH= ${XPATH}:${BPATH}:${UNIVERSE_TOOLCHAIN_PATH} 595# We should not be using tools from /usr/bin accidentally since this could cause 596# the build to break on other systems that don't have that tool. For now we 597# still allow using the old behaviour (inheriting $PATH) if 598# BUILD_WITH_STRICT_TMPPATH is set to 0 but this will eventually be removed. 599 600# Currently strict $PATH can cause build failures and does not work yet with 601# USING_SYSTEM_LINKER/USING_SYSTEM_COMPILER. Once these issues have been 602# resolved it will be turned on by default. 603BUILD_WITH_STRICT_TMPPATH?=0 604.if defined(CROSSBUILD_HOST) 605# When building on non-FreeBSD we can't rely on the tools in /usr/bin being compatible 606# with what FreeBSD expects. Therefore we only use tools from STRICTTMPPATH 607# during the world build stage. We build most tools during the bootstrap-tools 608# phase but symlink host tools that are known to work instead of building them 609BUILD_WITH_STRICT_TMPPATH:=1 610.endif 611.if ${BUILD_WITH_STRICT_TMPPATH} != 0 612TMPPATH= ${STRICTTMPPATH} 613.else 614TMPPATH= ${STRICTTMPPATH}:${PATH} 615.endif 616 617# 618# Avoid running mktemp(1) unless actually needed. 619# It may not be functional, e.g., due to new ABI 620# when in the middle of installing over this system. 621# 622.if make(distributeworld) || make(installworld) || make(stageworld) 623.if ${BUILD_WITH_STRICT_TMPPATH} != 0 624MKTEMP=${WORLDTMP}/legacy/usr/bin/mktemp 625.if !exists(${MKTEMP}) 626.error mktemp binary doesn't exist in expected location: ${MKTEMP} 627.endif 628.else 629MKTEMP=mktemp 630.endif 631INSTALLTMP!= ${MKTEMP} -d -u -t install 632 633.if ${.MAKE.OS} == "FreeBSD" 634# When building on FreeBSD we always copy the host tools instead of linking 635# into INSTALLTMP to avoid issues with incompatible libraries (see r364030). 636# Note: we could create links if we don't intend to update the current machine. 637INSTALLTMP_COPY_HOST_TOOL=cp 638.else 639# However, this is not necessary on Linux/macOS. Additionally, copying the host 640# tools to another directory with cp results in AMFI Launch Constraint 641# Violations on macOS Ventura as part of its System Integrity Protection. 642INSTALLTMP_COPY_HOST_TOOL=ln -s 643.endif 644.endif 645 646.if make(stagekernel) || make(distributekernel) 647TAGS+= kernel 648PACKAGE= kernel 649.endif 650 651# 652# Building a world goes through the following stages 653# 654# 1. legacy stage [BMAKE] 655# This stage is responsible for creating compatibility 656# shims that are needed by the bootstrap-tools, 657# build-tools and cross-tools stages. These are generally 658# APIs that tools from one of those three stages need to 659# build that aren't present on the host. 660# 1. bootstrap-tools stage [BMAKE] 661# This stage is responsible for creating programs that 662# are needed for backward compatibility reasons. They 663# are not built as cross-tools. 664# 2. build-tools stage [TMAKE] 665# This stage is responsible for creating the object 666# tree and building any tools that are needed during 667# the build process. Some programs are listed during 668# this phase because they build binaries to generate 669# files needed to build these programs. This stage also 670# builds the 'build-tools' target rather than 'all'. 671# 3. cross-tools stage [XMAKE] 672# This stage is responsible for creating any tools that 673# are needed for building the system. A cross-compiler is one 674# of them. This differs from build tools in two ways: 675# 1. the 'all' target is built rather than 'build-tools' 676# 2. these tools are installed into TMPPATH for stage 4. 677# 4. world stage [WMAKE] 678# This stage actually builds the world. 679# 5. install stage (optional) [IMAKE] 680# This stage installs a previously built world. 681# 682 683BOOTSTRAPPING?= 0 684# Keep these in sync 685MINIMUM_SUPPORTED_OSREL?= 1104001 686MINIMUM_SUPPORTED_REL?= 11.4 687 688# Common environment for world related stages 689CROSSENV+= \ 690 MACHINE_ARCH=${TARGET_ARCH} \ 691 MACHINE=${TARGET} \ 692 CPUTYPE=${TARGET_CPUTYPE} 693.if ${MK_META_MODE} != "no" 694# Don't rebuild build-tools targets during normal build. 695CROSSENV+= BUILD_TOOLS_META=.NOMETA 696.endif 697.if defined(TARGET_CFLAGS) 698CROSSENV+= ${TARGET_CFLAGS} 699.endif 700.if (${TARGET} != ${MACHINE} && !defined(WITH_LOCAL_MODULES)) || \ 701 defined(WITHOUT_LOCAL_MODULES) 702CROSSENV+= LOCAL_MODULES= 703.endif 704 705BOOTSTRAPPING_OSRELDATE?=${OSRELDATE} 706 707# bootstrap-tools stage 708BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 709 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \ 710 PATH=${BPATH:Q}:${PATH:Q} \ 711 WORLDTMP=${WORLDTMP} \ 712 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 713# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile 714BSARGS= DESTDIR= \ 715 OBJTOP='${WORLDTMP}/obj-tools' \ 716 OBJROOT='$${OBJTOP}/' \ 717 MAKEOBJDIRPREFIX= \ 718 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 719 BWPHASE=${.TARGET:C,^_,,} \ 720 -DNO_CPU_CFLAGS \ 721 -DNO_LINT \ 722 -DNO_PIC \ 723 -DNO_SHARED \ 724 MK_ASAN=no \ 725 MK_CTF=no \ 726 MK_CLANG_EXTRAS=no \ 727 MK_CLANG_FORMAT=no \ 728 MK_CLANG_FULL=no \ 729 MK_HTML=no \ 730 MK_MAN=no \ 731 MK_PROFILE=no \ 732 MK_RETPOLINE=no \ 733 MK_SSP=no \ 734 MK_TESTS=no \ 735 MK_UBSAN=no \ 736 MK_WERROR=no \ 737 MK_INCLUDES=yes \ 738 MK_MAN_UTILS=yes 739 740BMAKE= \ 741 ${TIME_ENV} ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 742 ${BSARGS} 743.if empty(.MAKEOVERRIDES:MMK_LLVM_TARGET_ALL) 744BMAKE+= MK_LLVM_TARGET_ALL=no 745.endif 746 747# build-tools stage 748TMAKE= \ 749 ${TIME_ENV} ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 750 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 751 DESTDIR= \ 752 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 753 BWPHASE=${.TARGET:C,^_,,} \ 754 -DNO_CPU_CFLAGS \ 755 -DNO_LINT \ 756 MK_ASAN=no \ 757 MK_CTF=no \ 758 MK_CLANG_EXTRAS=no \ 759 MK_CLANG_FORMAT=no \ 760 MK_CLANG_FULL=no \ 761 MK_LLDB=no \ 762 MK_RETPOLINE=no \ 763 MK_SSP=no \ 764 MK_TESTS=no \ 765 MK_UBSAN=no \ 766 MK_WERROR=no 767 768# cross-tools stage 769# TOOLS_PREFIX set in BMAKE 770XMAKE= ${BMAKE} \ 771 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 772 MK_LLDB=no \ 773 MK_LLVM_BINUTILS=no \ 774 MK_TESTS=no 775 776# kernel-tools stage 777KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 778 PATH=${BPATH:Q}:${PATH:Q} \ 779 WORLDTMP=${WORLDTMP} \ 780 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 781 782KTMAKE= ${TIME_ENV} \ 783 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \ 784 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 785 DESTDIR= \ 786 OBJTOP='${WORLDTMP}/obj-kernel-tools' \ 787 OBJROOT='$${OBJTOP}/' \ 788 MAKEOBJDIRPREFIX= \ 789 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 790 -DNO_CPU_CFLAGS \ 791 -DNO_LINT \ 792 -DNO_PIC \ 793 -DNO_SHARED \ 794 MK_CTF=no \ 795 MK_HTML=no \ 796 MK_MAN=no \ 797 MK_PROFILE=no \ 798 MK_SSP=no \ 799 MK_RETPOLINE=no \ 800 MK_WERROR=no 801 802# world stage 803WMAKEENV= ${CROSSENV} \ 804 INSTALL="${INSTALL_CMD} -U" \ 805 PATH=${TMPPATH:Q} \ 806 SYSROOT=${WORLDTMP} 807 808# make hierarchy 809HMAKE= PATH=${TMPPATH:Q} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} 810.if defined(NO_ROOT) 811HMAKE+= PATH=${TMPPATH:Q} METALOG=${METALOG} -DNO_ROOT 812.endif 813 814CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \ 815 CPP="${XCPP} ${XCFLAGS}" \ 816 AS="${XAS}" AR="${XAR}" ELFCTL="${XELFCTL}" LD="${XLD}" \ 817 LLVM_LINK="${XLLVM_LINK}" NM=${XNM} OBJCOPY="${XOBJCOPY}" \ 818 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ 819 SIZE="${XSIZE}" STRIPBIN="${XSTRIPBIN}" 820 821.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) 822# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a 823# directory, but the compiler will look in the right place for its 824# tools so we don't need to tell it where to look. 825BFLAGS+= -B${CROSS_BINUTILS_PREFIX} 826.endif 827 828 829# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX 830# and target set by TARGET/TARGET_ARCH. However, there are several needs to 831# always pass an explicit --sysroot and -target. 832# - External compiler needs sysroot and target flags. 833# - External ld needs sysroot. 834# - To be clear about the use of a sysroot when using the internal compiler. 835# - Easier debugging. 836# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to 837# the flip-flopping build command when sometimes using external and 838# sometimes using internal. 839# - Allow using lld which has no support for default paths. 840.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX}) 841BFLAGS+= -B${WORLDTMP}/usr/bin 842.endif 843.if ${WANT_COMPILER_TYPE} == gcc || \ 844 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 845.elif ${WANT_COMPILER_TYPE} == clang || \ 846 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang) 847XCFLAGS+= -target ${TARGET_TRIPLE} 848.endif 849XCFLAGS+= --sysroot=${WORLDTMP} 850 851.if !empty(BFLAGS) 852XCFLAGS+= ${BFLAGS} 853.endif 854 855.if ${MK_LIB32} == "yes" 856_LIBCOMPAT= 32 857.include "Makefile.libcompat" 858.endif 859 860# META_MODE normally ignores host file changes since every build updates 861# timestamps (see NO_META_IGNORE_HOST in sys.mk). There are known times 862# when the ABI breaks though that we want to force rebuilding WORLDTMP 863# to get updated host tools. 864.if ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" && \ 865 !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \ 866 !defined(_MKSHOWCONFIG) 867# r318736 - ino64 major ABI breakage 868META_MODE_BAD_ABI_VERS+= 1200031 869 870.if !defined(OBJDIR_HOST_OSRELDATE) 871.if exists(${OBJTOP}/host-osreldate.h) 872OBJDIR_HOST_OSRELDATE!= \ 873 awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 874 ${OBJTOP}/host-osreldate.h 875.elif exists(${WORLDTMP}/usr/include/osreldate.h) 876OBJDIR_HOST_OSRELDATE= 0 877.endif 878.export OBJDIR_HOST_OSRELDATE 879.endif 880 881# Note that this logic is the opposite of normal BOOTSTRAP handling. We want 882# to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE. If the WORLDTMP 883# is older than the ABI-breakage OSRELDATE of the HOST then we rebuild. 884.if defined(OBJDIR_HOST_OSRELDATE) 885.for _ver in ${META_MODE_BAD_ABI_VERS} 886.if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver} 887_meta_mode_need_rebuild= ${_ver} 888.endif 889.endfor 890.if defined(_meta_mode_need_rebuild) 891.info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}. 892NO_META_IGNORE_HOST_HEADERS= 1 893.export NO_META_IGNORE_HOST_HEADERS 894.endif # defined(_meta_mode_need_rebuild) 895.endif # defined(OBJDIR_HOST_OSRELDATE) 896.endif # ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" ... 897# This is only used for META_MODE+filemon to track what the oldest 898# __FreeBSD_version is in WORLDTMP. This purposely does NOT have 899# a make dependency on /usr/include/osreldate.h as the file should 900# only be copied when it is missing or meta mode determines it has changed. 901# Since host files are normally ignored without NO_META_IGNORE_HOST 902# the file will never be updated unless that flag is specified. This 903# allows tracking the oldest osreldate to force rebuilds via 904# META_MODE_BADABI_REVS above. 905host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here 906.if !defined(CROSSBUILD_HOST) 907 @cp -f /usr/include/osreldate.h ${.TARGET} 908.else 909 @echo "#ifndef __FreeBSD_version" > ${.TARGET} 910 @echo "#define __FreeBSD_version ${OSRELDATE}" >> ${.TARGET} 911 @echo "#endif" >> ${.TARGET} 912.endif 913 914WMAKE= ${TIME_ENV} ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 915 BWPHASE=${.TARGET:C,^_,,} \ 916 DESTDIR=${WORLDTMP} 917 918IMAKEENV= ${CROSSENV} 919IMAKE= ${TIME_ENV} ${IMAKEENV} ${MAKE} -f Makefile.inc1 \ 920 ${IMAKE_INSTALL} ${IMAKE_MTREE} 921.if empty(.MAKEFLAGS:M-n) 922IMAKEENV+= PATH=${STRICTTMPPATH:Q}:${INSTALLTMP:Q} \ 923 LD_LIBRARY_PATH=${INSTALLTMP:Q} \ 924 PATH_LOCALE=${INSTALLTMP}/locale 925IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh 926.else 927IMAKEENV+= PATH=${TMPPATH:Q}:${INSTALLTMP:Q} 928.endif 929 930# When generating install media, do not allow user and group information from 931# the build host to affect the contents of the distribution. 932.if make(distributeworld) || make(distrib-dirs) || make(distribution) || \ 933 make(stageworld) 934DB_FROM_SRC= yes 935.endif 936 937.if defined(DB_FROM_SRC) 938INSTALLFLAGS+= -N ${.CURDIR}/etc 939MTREEFLAGS+= -N ${.CURDIR}/etc 940.endif 941_INSTALL_DDIR= ${DESTDIR}/${DISTDIR} 942INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::} 943.if defined(NO_ROOT) 944METALOG?= ${DESTDIR}/${DISTDIR}/METALOG 945METALOG:= ${METALOG:C,//+,/,g} 946IMAKE+= -DNO_ROOT METALOG=${METALOG} 947METALOG_INSTALLFLAGS= -U -M ${METALOG} -D ${INSTALL_DDIR} 948INSTALLFLAGS+= ${METALOG_INSTALLFLAGS} 949CERTCTLFLAGS= ${METALOG_INSTALLFLAGS} 950MTREEFLAGS+= -W 951.endif 952.if defined(BUILD_PKGS) 953INSTALLFLAGS+= -h sha256 954.endif 955.if defined(DB_FROM_SRC) || defined(NO_ROOT) 956IMAKE_INSTALL= INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" 957IMAKE_MTREE= MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" 958.endif 959.if make(distributeworld) 960CERTCTLDESTDIR= ${DESTDIR}/${DISTDIR} 961CERTCTLFLAGS+= -d /base 962.else 963CERTCTLDESTDIR= ${DESTDIR} 964.endif 965CERTCTLFLAGS+= -D "${CERTCTLDESTDIR}" 966 967DESTDIR_MTREEFLAGS= -deU 968# When creating worldtmp we don't need to set the directories as owned by root 969# so we also pass -W 970WORLDTMP_MTREEFLAGS= -deUW 971.if defined(NO_ROOT) 972# When building with -DNO_ROOT we shouldn't be changing the directories 973# that are created by mtree to be owned by root/wheel. 974DESTDIR_MTREEFLAGS+= -W 975.endif 976.if defined(DB_FROM_SRC) 977DISTR_MTREEFLAGS= -N ${.CURDIR}/etc 978.endif 979DISTR_MTREECMD= ${MTREE_CMD} 980.if ${BUILD_WITH_STRICT_TMPPATH} != 0 981DISTR_MTREECMD= ${WORLDTMP}/legacy/usr/sbin/mtree 982.endif 983DISTR_MTREE= ${DISTR_MTREECMD} ${DISTR_MTREEFLAGS} 984WORLDTMP_MTREE= ${DISTR_MTREECMD} ${WORLDTMP_MTREEFLAGS} 985DESTDIR_MTREE= ${DISTR_MTREECMD} ${DESTDIR_MTREEFLAGS} 986 987METALOG_SORT_CMD= env -i LC_COLLATE=C sort 988 989# kernel stage 990KMAKEENV= ${WMAKEENV:NSYSROOT=*} 991KMAKE= ${TIME_ENV} ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} 992 993# 994# buildworld 995# 996# Attempt to rebuild the entire system, with reasonable chance of 997# success, regardless of how old your existing system is. 998# 999_sanity_check: .PHONY .MAKE 1000.if ${.CURDIR:C/[^,]//g} != "" 1001# The m4 build of sendmail files doesn't like it if ',' is used 1002# anywhere in the path of it's files. 1003 @echo 1004 @echo "*** Error: path to source tree contains a comma ','" 1005 @echo 1006 @false 1007.elif ${.CURDIR:M*\:*} != "" 1008# Using ':' leaks into PATH and breaks finding cross-tools. 1009 @echo 1010 @echo "*** Error: path to source tree contains a colon ':'" 1011 @echo 1012 @false 1013.endif 1014 1015# Our current approach to dependency tracking cannot cope with certain source 1016# tree changes, particularly with respect to removing source files and 1017# replacing generated files. Handle these cases here in an ad-hoc fashion. 1018_cleanobj_fast_depend_hack: .PHONY 1019 @echo ">>> Deleting stale dependencies..."; 1020 sh ${.CURDIR}/tools/build/depend-cleanup.sh ${OBJTOP} 1021 1022_worldtmp: .PHONY 1023 @echo 1024 @echo "--------------------------------------------------------------" 1025 @echo ">>> Rebuilding the temporary build tree" 1026 @echo "--------------------------------------------------------------" 1027.if ${MK_CLEAN} == "yes" 1028 rm -rf ${WORLDTMP} 1029.else 1030# Note: for delete-old we need to set $PATH to also include the host $PATH 1031# since otherwise a partial build with missing symlinks in ${WORLDTMP}/legacy/ 1032# will fail to run due to missing binaries. $WMAKE sets PATH to only ${TMPPATH} 1033# so we remove that assingnment from $WMAKE and prepend the new $PATH 1034 ${_+_}@if [ -e "${WORLDTMP}" ]; then \ 1035 echo ">>> Deleting stale files in build tree..."; \ 1036 cd ${.CURDIR}; env PATH=${TMPPATH:Q}:${PATH:Q} ${WMAKE:NPATH=*} \ 1037 _NO_INCLUDE_COMPILERMK=t -DBATCH_DELETE_OLD_FILES delete-old \ 1038 delete-old-libs >/dev/null; \ 1039 fi 1040 rm -rf ${WORLDTMP}/legacy/usr/include 1041.if ${USING_SYSTEM_COMPILER} == "yes" 1042.for cc in cc c++ 1043 if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \ 1044 inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \ 1045 find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \ 1046 fi 1047.endfor 1048.endif # ${USING_SYSTEM_COMPILER} == "yes" 1049.if ${USING_SYSTEM_LINKER} == "yes" 1050 @rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld 1051.endif # ${USING_SYSTEM_LINKER} == "yes" 1052.endif # ${MK_CLEAN} == "yes" 1053 @mkdir -p ${WORLDTMP} 1054 @touch ${WORLDTMP}/${.TARGET} 1055# We can't use mtree to create the worldtmp directories since it may not be 1056# available on the target system (this happens e.g. when building on non-FreeBSD) 1057 ${_+_}cd ${.CURDIR}/tools/build; \ 1058 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs 1059# In order to build without inheriting $PATH we need to add symlinks to the host 1060# tools in $WORLDTMP for the tools that we don't build during bootstrap-tools 1061 ${_+_}cd ${.CURDIR}/tools/build; \ 1062 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks 1063 1064_legacy: 1065 @echo 1066 @echo "--------------------------------------------------------------" 1067 @echo ">>> stage 1.1: legacy release compatibility shims" 1068 @echo "--------------------------------------------------------------" 1069 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy 1070_bootstrap-tools: 1071 @echo 1072 @echo "--------------------------------------------------------------" 1073 @echo ">>> stage 1.2: bootstrap tools" 1074 @echo "--------------------------------------------------------------" 1075.if ${MK_CLEAN} != "yes" 1076 ${_+_}cd ${.CURDIR}; ${BMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack 1077.endif 1078 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools 1079 mkdir -p ${WORLDTMP}/usr ${WORLDTMP}/lib/geom ${WORLDTMP}/bin 1080 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1081 -p ${WORLDTMP}/usr >/dev/null 1082 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1083 -p ${WORLDTMP}/usr/include >/dev/null 1084.if ${TARGET_ARCH} == "amd64" 1085 mkdir -p ${WORLDTMP}/usr/include/i386 1086.endif 1087 ln -sf ${.CURDIR}/sys ${WORLDTMP} 1088.if ${MK_DEBUG_FILES} != "no" 1089 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1090 -p ${WORLDTMP}/usr/lib >/dev/null 1091.endif 1092.for _mtree in ${LOCAL_MTREE} 1093 ${WORLDTMP_MTREE} -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null 1094.endfor 1095_cleanobj: 1096.if ${MK_CLEAN} == "yes" 1097 @echo 1098 @echo "--------------------------------------------------------------" 1099 @echo ">>> stage 2.1: cleaning up the object tree" 1100 @echo "--------------------------------------------------------------" 1101 # Avoid including bsd.compiler.mk in clean and obj with _NO_INCLUDE_COMPILERMK 1102 # since the restricted $PATH might not contain a valid cc binary 1103 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t ${CLEANDIR} 1104.if defined(_LIBCOMPAT) 1105 ${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR} 1106.endif 1107.else 1108 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack 1109.endif # ${MK_CLEAN} == "yes" 1110_obj: 1111 @echo 1112 @echo "--------------------------------------------------------------" 1113 @echo ">>> stage 2.2: rebuilding the object tree" 1114 @echo "--------------------------------------------------------------" 1115 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t obj 1116_build-tools: 1117 @echo 1118 @echo "--------------------------------------------------------------" 1119 @echo ">>> stage 2.3: build tools" 1120 @echo "--------------------------------------------------------------" 1121 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools 1122_cross-tools: 1123 @echo 1124 @echo "--------------------------------------------------------------" 1125 @echo ">>> stage 3: cross tools" 1126 @echo "--------------------------------------------------------------" 1127 @rm -f ${OBJTOP}/toolchain-metadata.mk 1128 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools 1129 ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools 1130_build-metadata: 1131 @echo 1132 @echo "--------------------------------------------------------------" 1133 @echo ">>> stage 3.1: recording build metadata" 1134 @echo "--------------------------------------------------------------" 1135 ${_+_}cd ${.CURDIR}; ${WMAKE} toolchain-metadata.mk 1136 ${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h 1137_includes: 1138 @echo 1139 @echo "--------------------------------------------------------------" 1140 @echo ">>> stage 4.1: building includes" 1141 @echo "--------------------------------------------------------------" 1142# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need 1143# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. 1144 ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ 1145 MK_INCLUDES=yes includes 1146.if !empty(SUBDIR_OVERRIDE) && make(buildworld) 1147 ${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes 1148.endif 1149 ${_+_}cd ${.CURDIR}; ${WMAKE} test-includes 1150_libraries: 1151 @echo 1152 @echo "--------------------------------------------------------------" 1153 @echo ">>> stage 4.2: building libraries" 1154 @echo "--------------------------------------------------------------" 1155 ${_+_}cd ${.CURDIR}; \ 1156 ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \ 1157 MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} \ 1158 libraries 1159everything: .PHONY 1160 @echo 1161 @echo "--------------------------------------------------------------" 1162 @echo ">>> stage 4.4: building everything" 1163 @echo "--------------------------------------------------------------" 1164 ${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all 1165 1166WMAKE_TGTS= 1167.if !defined(WORLDFAST) 1168WMAKE_TGTS+= _sanity_check _worldtmp _legacy 1169.if empty(SUBDIR_OVERRIDE) 1170WMAKE_TGTS+= _bootstrap-tools 1171.endif 1172WMAKE_TGTS+= _cleanobj 1173.if !defined(NO_OBJWALK) 1174WMAKE_TGTS+= _obj 1175.endif 1176WMAKE_TGTS+= _build-tools _cross-tools 1177WMAKE_TGTS+= _build-metadata 1178WMAKE_TGTS+= _includes 1179.endif 1180.if !defined(NO_LIBS) 1181WMAKE_TGTS+= _libraries 1182.endif 1183.if defined(_LIBCOMPAT) && empty(SUBDIR_OVERRIDE) 1184WMAKE_TGTS+= build${libcompat} 1185.endif 1186WMAKE_TGTS+= everything 1187 1188# record buildworld time in seconds 1189.if make(buildworld) 1190_BUILDWORLD_START!= date '+%s' 1191.export _BUILDWORLD_START 1192.endif 1193 1194buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY 1195.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 1196 1197_ncpu_cmd=sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo unknown 1198 1199buildworld_prologue: .PHONY 1200 @echo "--------------------------------------------------------------" 1201 @echo ">>> World build started on `LC_ALL=C date`" 1202 @echo "--------------------------------------------------------------" 1203 1204buildworld_epilogue: .PHONY 1205 @echo 1206 @echo "--------------------------------------------------------------" 1207 @echo ">>> World build completed on `LC_ALL=C date`" 1208 @seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \ 1209 echo -n ">>> World built in $$seconds seconds, "; \ 1210 echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" 1211 @echo "--------------------------------------------------------------" 1212 1213# 1214# We need to have this as a target because the indirection between Makefile 1215# and Makefile.inc1 causes the correct PATH to be used, rather than a 1216# modification of the current environment's PATH. In addition, we need 1217# to quote multiword values. 1218# 1219buildenvvars: .PHONY 1220 @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} 1221 1222.if ${.TARGETS:Mbuildenv} 1223.if ${.MAKEFLAGS:M-j} 1224.error The buildenv target is incompatible with -j 1225.endif 1226.endif 1227BUILDENV_DIR?= ${.CURDIR} 1228# 1229# Note: make will report any errors the shell reports. This can 1230# be odd if the last command in an interactive shell generates an 1231# error or is terminated by SIGINT. These reported errors look bad, 1232# but are harmless. Allowing them also allows BUILDENV_SHELL to 1233# be a complex command whose status will be returned to the caller. 1234# Some scripts in tools rely on this behavior to report build errors. 1235# 1236buildenv: .PHONY 1237 @echo Entering world for ${TARGET_ARCH}:${TARGET} 1238.if ${BUILDENV_SHELL:M*zsh*} 1239 @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} 1240.endif 1241 @cd ${BUILDENV_DIR} && env ${WMAKEENV} \ 1242 INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" \ 1243 MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" BUILDENV=1 ${BUILDENV_SHELL} 1244 1245TOOLCHAIN_TGTS= ${WMAKE_TGTS:Neverything:Nbuild${libcompat}} 1246toolchain: ${TOOLCHAIN_TGTS} .PHONY 1247KERNEL_TOOLCHAIN_TGTS= ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries} 1248.if make(kernel-toolchain) 1249.ORDER: ${KERNEL_TOOLCHAIN_TGTS} 1250.endif 1251kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY 1252 1253# 1254# installcheck 1255# 1256# Checks to be sure system is ready for installworld/installkernel. 1257# 1258installcheck: _installcheck_world _installcheck_kernel .PHONY 1259_installcheck_world: .PHONY 1260 @echo "--------------------------------------------------------------" 1261 @echo ">>> Install check world" 1262 @echo "--------------------------------------------------------------" 1263_installcheck_kernel: .PHONY 1264 @echo "--------------------------------------------------------------" 1265 @echo ">>> Install check kernel" 1266 @echo "--------------------------------------------------------------" 1267 1268# 1269# Require DESTDIR to be set if installing for a different architecture or 1270# using the user/group database in the source tree. 1271# 1272.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ 1273 defined(DB_FROM_SRC) 1274.if !make(distributeworld) 1275_installcheck_world: __installcheck_DESTDIR 1276_installcheck_kernel: __installcheck_DESTDIR 1277__installcheck_DESTDIR: .PHONY 1278.if !defined(DESTDIR) || empty(DESTDIR) 1279 @echo "ERROR: Please set DESTDIR!"; \ 1280 false 1281.endif 1282.endif 1283.endif 1284 1285.if !defined(DB_FROM_SRC) 1286# 1287# Check for missing UIDs/GIDs. 1288# 1289CHECK_UIDS= auditdistd 1290CHECK_GIDS= audit 1291CHECK_UIDS+= ntpd 1292CHECK_GIDS+= ntpd 1293CHECK_UIDS+= proxy 1294CHECK_GIDS+= proxy authpf 1295CHECK_UIDS+= smmsp 1296CHECK_GIDS+= smmsp 1297CHECK_UIDS+= unbound 1298CHECK_GIDS+= unbound 1299_installcheck_world: __installcheck_UGID 1300__installcheck_UGID: .PHONY 1301.for uid in ${CHECK_UIDS} 1302 @if ! `id -u ${uid} >/dev/null 2>&1`; then \ 1303 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ 1304 false; \ 1305 fi 1306.endfor 1307.for gid in ${CHECK_GIDS} 1308 @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ 1309 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ 1310 false; \ 1311 fi 1312.endfor 1313.endif 1314# 1315# If installing over the running system (DESTDIR is / or unset) and the install 1316# includes rescue, try running rescue from the objdir as a sanity check. If 1317# rescue is not functional (e.g., because it depends on a system call not 1318# supported by the currently running kernel), abort the installation. 1319# 1320.if !make(distributeworld) && ${MK_RESCUE} != "no" && \ 1321 (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH) 1322_installcheck_world: __installcheck_sh_check 1323__installcheck_sh_check: .PHONY 1324 @if [ "`${OBJTOP}/rescue/rescue/rescue sh -c 'echo OK'`" != \ 1325 OK ]; then \ 1326 echo "rescue/sh check failed, installation aborted" >&2; \ 1327 false; \ 1328 fi 1329.endif 1330 1331# 1332# Required install tools to be saved in a scratch dir for safety. 1333# 1334.if !defined(CROSSBUILD_HOST) 1335_sysctl=sysctl 1336.endif 1337 1338ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ 1339 date echo egrep find grep id install ${_install-info} \ 1340 ln make mkdir mtree mv pwd_mkdb \ 1341 rm sed services_mkdb sh sort strip ${_sysctl} test time true uname wc 1342 1343.if ${MK_ZONEINFO} != "no" 1344ITOOLS+=tzsetup 1345.endif 1346 1347# Needed for share/man 1348.if ${MK_MAN_UTILS} != "no" 1349ITOOLS+=makewhatis 1350.endif 1351 1352ITOOLS+=${LOCAL_ITOOLS} 1353 1354# 1355# distributeworld 1356# 1357# Distributes everything compiled by a `buildworld'. 1358# 1359# installworld 1360# 1361# Installs everything compiled by a 'buildworld'. 1362# 1363 1364# Non-base distributions produced by the base system 1365EXTRA_DISTRIBUTIONS= 1366.if defined(_LIBCOMPAT) 1367EXTRA_DISTRIBUTIONS+= lib${libcompat} 1368.endif 1369.if ${MK_TESTS} != "no" 1370EXTRA_DISTRIBUTIONS+= tests 1371.endif 1372 1373DEBUG_DISTRIBUTIONS= 1374.if ${MK_DEBUG_FILES} != "no" 1375DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,tests,,} 1376.endif 1377 1378MTREE_MAGIC?= mtree 2.0 1379 1380distributeworld installworld stageworld: _installcheck_world .PHONY 1381 mkdir -p ${INSTALLTMP} 1382 progs=$$(for prog in ${ITOOLS}; do \ 1383 if progpath=`env PATH=${TMPPATH:Q} which $$prog`; then \ 1384 echo $$progpath; \ 1385 else \ 1386 echo "Required tool $$prog not found in PATH ("${TMPPATH:Q}")." >&2; \ 1387 exit 1; \ 1388 fi; \ 1389 done); \ 1390 if [ -z "${CROSSBUILD_HOST}" ] ; then \ 1391 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | grep -Ev '\[.*]' | \ 1392 while read line; do \ 1393 set -- $$line; \ 1394 if [ "$$2 $$3" != "not found" ]; then \ 1395 echo $$2; \ 1396 else \ 1397 echo "Required library $$1 not found." >&2; \ 1398 exit 1; \ 1399 fi; \ 1400 done); \ 1401 fi; \ 1402 ${INSTALLTMP_COPY_HOST_TOOL} $$libs $$progs ${INSTALLTMP} 1403 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale 1404.if defined(NO_ROOT) 1405 -mkdir -p ${METALOG:H} 1406 echo "#${MTREE_MAGIC}" > ${METALOG} 1407.endif 1408.if make(distributeworld) 1409.for dist in ${EXTRA_DISTRIBUTIONS} 1410 -mkdir ${DESTDIR}/${DISTDIR}/${dist} 1411 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 1412 -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null 1413 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1414 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1415 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1416 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null 1417.if ${TARGET_ARCH} == "amd64" 1418 -mkdir ${DESTDIR}/${DISTDIR}/${dist}/usr/include/i386 1419.endif 1420.if ${MK_DEBUG_FILES} != "no" 1421 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1422 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null 1423.endif 1424.if defined(_LIBCOMPAT) 1425 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1426 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1427.if ${MK_DEBUG_FILES} != "no" 1428 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1429 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null 1430.endif 1431.endif 1432.if ${MK_TESTS} != "no" && ${dist} == "tests" 1433 -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} 1434 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1435 -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null 1436.if ${MK_DEBUG_FILES} != "no" 1437 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1438 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null 1439.endif 1440.endif 1441.if defined(NO_ROOT) 1442 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ 1443 sed -e 's#^\./#./${dist}/#' >> ${METALOG} 1444 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \ 1445 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1446 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ 1447 sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} 1448.if ${TARGET_ARCH} == "amd64" 1449 echo "./${dist}/usr/include/i386 type=dir uname=root gname=wheel mode=0755" >> ${METALOG} 1450.endif 1451.if defined(_LIBCOMPAT) 1452 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \ 1453 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1454.endif 1455.endif 1456.endfor 1457 -mkdir ${DESTDIR}/${DISTDIR}/base 1458 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH:Q} ${MAKE} \ 1459 METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ 1460 DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ 1461 LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs 1462 ${INSTALL_SYMLINK} ${INSTALLFLAGS} usr/src/sys ${INSTALL_DDIR}/base/sys 1463.endif # make(distributeworld) 1464 ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ 1465 ${IMAKEENV} rm -rf ${INSTALLTMP} 1466.if !make(packageworld) && ${MK_CAROOT} != "no" 1467 @if which openssl>/dev/null; then \ 1468 PATH=${TMPPATH:Q}:${PATH:Q} \ 1469 sh ${SRCTOP}/usr.sbin/certctl/certctl.sh ${CERTCTLFLAGS} rehash; \ 1470 else \ 1471 echo "No openssl on the host, not rehashing certificates target -- /etc/ssl may not be populated."; \ 1472 fi 1473.endif 1474.if make(distributeworld) 1475.for dist in ${EXTRA_DISTRIBUTIONS} 1476 find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete 1477.endfor 1478.if defined(NO_ROOT) 1479.for dist in base ${EXTRA_DISTRIBUTIONS} 1480 @# For each file that exists in this dist, print the corresponding 1481 @# line from the METALOG. This relies on the fact that 1482 @# a line containing only the filename will sort immediately before 1483 @# the relevant mtree line. 1484 cd ${DESTDIR}/${DISTDIR}; \ 1485 find ./${dist} | ${METALOG_SORT_CMD} -u ${METALOG} - | \ 1486 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1487 ${DESTDIR}/${DISTDIR}/${dist}.meta 1488.endfor 1489.for dist in ${DEBUG_DISTRIBUTIONS} 1490 @# For each file that exists in this dist, print the corresponding 1491 @# line from the METALOG. This relies on the fact that 1492 @# a line containing only the filename will sort immediately before 1493 @# the relevant mtree line. 1494 cd ${DESTDIR}/${DISTDIR}; \ 1495 find ./${dist}/usr/lib/debug | ${METALOG_SORT_CMD} -u ${METALOG} - | \ 1496 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1497 ${DESTDIR}/${DISTDIR}/${dist}.debug.meta 1498.endfor 1499.endif 1500.endif # make(distributeworld) 1501 1502packageworld: .PHONY 1503.for dist in base ${EXTRA_DISTRIBUTIONS} 1504.if defined(NO_ROOT) 1505 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1506 ${TAR_CMD} cvf - --exclude usr/lib/debug \ 1507 @${DESTDIR}/${DISTDIR}/${dist}.meta | \ 1508 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1509.else 1510 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1511 ${TAR_CMD} cvf - --exclude usr/lib/debug . | \ 1512 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1513.endif 1514.endfor 1515 1516.for dist in ${DEBUG_DISTRIBUTIONS} 1517. if defined(NO_ROOT) 1518 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1519 ${TAR_CMD} cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ 1520 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1521. else 1522 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1523 ${TAR_CMD} cvLf - usr/lib/debug | \ 1524 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1525. endif 1526.endfor 1527 1528makeman: .PHONY 1529 ${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \ 1530 ${.CURDIR}/share/man/man5/src.conf.5 1531 1532# Ensure no regressions in self-includeability of sys/*.h and net*/*.h 1533test-includes: .PHONY 1534 ${_+_}cd ${.CURDIR}/tools/build/test-includes; \ 1535 ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} DESTDIR=${WORLDTMP} test-includes 1536 1537# We can't assume here that ${TMPPATH} will include ${PATH} or /usr/libexec 1538# because we may be building with a STRICTTMPPATH, so we explicitly include 1539# /usr/libexec here for flua. ${TMPPATH} still usefully includes anything else 1540# we may need to function. 1541_sysent_PATH= ${TMPPATH}:/usr/libexec 1542_sysent_dirs= sys/kern 1543_sysent_dirs+= sys/compat/freebsd32 1544_sysent_dirs+= sys/amd64/linux \ 1545 sys/amd64/linux32 \ 1546 sys/arm64/linux \ 1547 sys/i386/linux 1548 1549sysent: .PHONY 1550.for _dir in ${_sysent_dirs} 1551sysent-${_dir}: .PHONY 1552 @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent" 1553 ${_+_}@env PATH=${_sysent_PATH:Q} ${MAKE} -C ${.CURDIR}/${_dir} sysent 1554 1555sysent: sysent-${_dir} 1556.endfor 1557 1558# 1559# reinstall 1560# 1561# If you have a build server, you can NFS mount the source and obj directories 1562# and do a 'make reinstall' on the *client* to install new binaries from the 1563# most recent server build. 1564# 1565restage reinstall: .MAKE .PHONY 1566 @echo "--------------------------------------------------------------" 1567 @echo ">>> Making hierarchy" 1568 @echo "--------------------------------------------------------------" 1569 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1570 LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy 1571.if make(restage) 1572 @echo "--------------------------------------------------------------" 1573 @echo ">>> Making distribution" 1574 @echo "--------------------------------------------------------------" 1575 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1576 LOCAL_MTREE=${LOCAL_MTREE:Q} distribution 1577.endif 1578 @echo 1579 @echo "--------------------------------------------------------------" 1580 @echo ">>> Installing everything started on `LC_ALL=C date`" 1581 @echo "--------------------------------------------------------------" 1582 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 1583.if defined(_LIBCOMPAT) 1584 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat} 1585.endif 1586 @echo "--------------------------------------------------------------" 1587 @echo ">>> Installing everything completed on `LC_ALL=C date`" 1588 @echo "--------------------------------------------------------------" 1589 1590redistribute: .MAKE .PHONY 1591 @echo "--------------------------------------------------------------" 1592 @echo ">>> Distributing everything" 1593 @echo "--------------------------------------------------------------" 1594 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 1595.if defined(_LIBCOMPAT) 1596 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \ 1597 DISTRIBUTION=lib${libcompat} 1598.endif 1599 1600distrib-dirs distribution: .MAKE .PHONY 1601 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH:Q} ${MAKE} \ 1602 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1603.if make(distribution) 1604 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH:Q} \ 1605 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ 1606 METALOG=${METALOG} MK_TESTS=no \ 1607 MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} installconfig 1608.endif 1609 1610# 1611# buildkernel and installkernel 1612# 1613# Which kernels to build and/or install is specified by setting 1614# KERNCONF. If not defined a GENERIC kernel is built/installed. 1615# Only the existing (depending TARGET) config files are used 1616# for building kernels and only the first of these is designated 1617# as the one being installed. 1618# 1619# Note that we have to use TARGET instead of TARGET_ARCH when 1620# we're in kernel-land. Since only TARGET_ARCH is (expected) to 1621# be set to cross-build, we have to make sure TARGET is set 1622# properly. 1623 1624.if defined(KERNFAST) 1625NO_KERNELCLEAN= t 1626NO_KERNELCONFIG= t 1627NO_KERNELOBJ= t 1628# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 1629.if !defined(KERNCONF) && ${KERNFAST} != "1" 1630KERNCONF=${KERNFAST} 1631.endif 1632.endif 1633.if ${TARGET_ARCH} == "powerpc64" 1634KERNCONF?= GENERIC64 1635.elif ${TARGET_ARCH} == "powerpc64le" 1636KERNCONF?= GENERIC64LE 1637.elif ${TARGET_ARCH} == "powerpcspe" 1638KERNCONF?= MPC85XXSPE 1639.else 1640KERNCONF?= GENERIC 1641.endif 1642INSTKERNNAME?= kernel 1643 1644KERNSRCDIR?= ${.CURDIR}/sys 1645KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 1646KRNLOBJDIR= ${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,} 1647KERNCONFDIR?= ${KRNLCONFDIR} 1648 1649BUILDKERNELS= 1650INSTALLKERNEL= 1651.if defined(NO_INSTALLKERNEL) 1652# All of the BUILDKERNELS loops start at index 1. 1653BUILDKERNELS+= dummy 1654.endif 1655.for _kernel in ${KERNCONF} 1656.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel}) 1657BUILDKERNELS+= ${_kernel} 1658.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL) 1659INSTALLKERNEL= ${_kernel} 1660.endif 1661.else 1662.if make(buildkernel) 1663.error Missing KERNCONF ${KERNCONFDIR}/${_kernel} 1664.endif 1665.endif 1666.endfor 1667 1668_cleankernobj_fast_depend_hack: .PHONY 1669# 20191009 r353340 removal of opensolaris_atomic.S (also r353381) 1670.if ${MACHINE} != i386 1671.for f in opensolaris_atomic 1672.for m in opensolaris zfs 1673 @if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \ 1674 grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \ 1675 echo "Removing stale dependencies for opensolaris_atomic"; \ 1676 rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \ 1677 fi 1678.endfor 1679.endfor 1680.endif 1681 1682${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY 1683 1684# record kernel(s) build time in seconds 1685.if make(buildkernel) 1686_BUILDKERNEL_START!= date '+%s' 1687.endif 1688 1689# 1690# buildkernel 1691# 1692# Builds all kernels defined by BUILDKERNELS. 1693# 1694buildkernel: .MAKE .PHONY 1695.if empty(BUILDKERNELS:Ndummy) 1696 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 1697 false 1698.endif 1699 @echo 1700.for _kernel in ${BUILDKERNELS:Ndummy} 1701 @echo "--------------------------------------------------------------" 1702 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 1703 @echo "--------------------------------------------------------------" 1704 @echo "===> ${_kernel}" 1705 mkdir -p ${KRNLOBJDIR} 1706.if !defined(NO_KERNELCONFIG) 1707 @echo 1708 @echo "--------------------------------------------------------------" 1709 @echo ">>> stage 1: configuring the kernel" 1710 @echo "--------------------------------------------------------------" 1711 cd ${KRNLCONFDIR}; \ 1712 PATH=${TMPPATH:Q} \ 1713 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 1714 -I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \ 1715 '${KERNCONFDIR}/${_kernel}' 1716.endif 1717.if ${MK_CLEAN} == "yes" && !defined(NO_KERNELCLEAN) 1718 @echo 1719 @echo "--------------------------------------------------------------" 1720 @echo ">>> stage 2.1: cleaning up the object tree" 1721 @echo "--------------------------------------------------------------" 1722 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 1723.else 1724 ${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack 1725.endif 1726.if !defined(NO_KERNELOBJ) 1727 @echo 1728 @echo "--------------------------------------------------------------" 1729 @echo ">>> stage 2.2: rebuilding the object tree" 1730 @echo "--------------------------------------------------------------" 1731 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 1732.endif 1733 @echo 1734 @echo "--------------------------------------------------------------" 1735 @echo ">>> stage 2.3: build tools" 1736 @echo "--------------------------------------------------------------" 1737 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools 1738 @echo 1739 @echo "--------------------------------------------------------------" 1740 @echo ">>> stage 3.1: building everything" 1741 @echo "--------------------------------------------------------------" 1742 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 1743 @echo "--------------------------------------------------------------" 1744 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 1745 @echo "--------------------------------------------------------------" 1746 1747.endfor 1748 @seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \ 1749 echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \ 1750 echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" 1751 @echo "--------------------------------------------------------------" 1752 1753.if !make(packages) && !make(update-packages) 1754NO_INSTALLEXTRAKERNELS?= yes 1755.else 1756# packages/update-packages installs kernels to a staging directory then builds 1757# packages from the result to be installed, typically to other systems. It is 1758# less surprising for these targets to honor KERNCONF if multiple kernels are 1759# specified. 1760NO_INSTALLEXTRAKERNELS?= no 1761.endif 1762 1763# 1764# installkernel, etc. 1765# 1766# Install the kernel defined by INSTALLKERNEL 1767# 1768installkernel installkernel.debug \ 1769reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY 1770.if !defined(NO_INSTALLKERNEL) 1771.if empty(INSTALLKERNEL) 1772 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1773 false 1774.endif 1775 @echo "--------------------------------------------------------------" 1776 @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)" 1777 @echo "--------------------------------------------------------------" 1778 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1779 ${CROSSENV} PATH=${TMPPATH:Q} \ 1780 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 1781 @echo "--------------------------------------------------------------" 1782 @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)" 1783 @echo "--------------------------------------------------------------" 1784.endif 1785.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1786.for _kernel in ${BUILDKERNELS:[2..-1]} 1787 @echo "--------------------------------------------------------------" 1788 @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)" 1789 @echo "--------------------------------------------------------------" 1790 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1791 ${CROSSENV} PATH=${TMPPATH:Q} \ 1792 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} 1793 @echo "--------------------------------------------------------------" 1794 @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)" 1795 @echo "--------------------------------------------------------------" 1796.endfor 1797.endif 1798 1799distributekernel distributekernel.debug: .PHONY 1800.if !defined(NO_INSTALLKERNEL) 1801.if empty(INSTALLKERNEL) 1802 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1803 false 1804.endif 1805 mkdir -p ${DESTDIR}/${DISTDIR} 1806.if defined(NO_ROOT) 1807 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta 1808.endif 1809 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1810 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ 1811 ${IMAKE_MTREE} PATH=${TMPPATH:Q} ${MAKE} KERNEL=${INSTKERNNAME} \ 1812 DESTDIR=${INSTALL_DDIR}/kernel \ 1813 ${.TARGET:S/distributekernel/install/} 1814.if defined(NO_ROOT) 1815 @sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ 1816 ${DESTDIR}/${DISTDIR}/kernel.meta 1817.endif 1818.endif 1819.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1820.for _kernel in ${BUILDKERNELS:[2..-1]} 1821.if defined(NO_ROOT) 1822 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta 1823.endif 1824 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1825 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ 1826 ${IMAKE_MTREE} PATH=${TMPPATH:Q} ${MAKE} \ 1827 KERNEL=${INSTKERNNAME}.${_kernel} \ 1828 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ 1829 ${.TARGET:S/distributekernel/install/} 1830.if defined(NO_ROOT) 1831 @sed -e "s|^./kernel.${_kernel}|.|" \ 1832 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ 1833 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta 1834.endif 1835.endfor 1836.endif 1837 1838packagekernel: .PHONY 1839.if defined(NO_ROOT) 1840.if !defined(NO_INSTALLKERNEL) 1841 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1842 ${TAR_CMD} cvf - --exclude '*.debug' \ 1843 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1844 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1845.endif 1846.if ${MK_DEBUG_FILES} != "no" 1847 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1848 ${TAR_CMD} cvf - --include '*/*/*.debug' \ 1849 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1850 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1851.endif 1852.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1853.for _kernel in ${BUILDKERNELS:[2..-1]} 1854 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1855 ${TAR_CMD} cvf - --exclude '*.debug' \ 1856 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1857 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1858.if ${MK_DEBUG_FILES} != "no" 1859 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1860 ${TAR_CMD} cvf - --include '*/*/*.debug' \ 1861 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1862 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1863.endif 1864.endfor 1865.endif 1866.else 1867.if !defined(NO_INSTALLKERNEL) 1868 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1869 ${TAR_CMD} cvf - --exclude '*.debug' . | \ 1870 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1871.endif 1872.if ${MK_DEBUG_FILES} != "no" 1873 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1874 ${TAR_CMD} cvf - --include '*/*/*.debug' $$(eval find .) | \ 1875 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1876.endif 1877.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1878.for _kernel in ${BUILDKERNELS:[2..-1]} 1879 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1880 ${TAR_CMD} cvf - --exclude '*.debug' . | \ 1881 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1882.if ${MK_DEBUG_FILES} != "no" 1883 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1884 ${TAR_CMD} cvf - --include '*/*/*.debug' $$(eval find .) | \ 1885 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1886.endif 1887.endfor 1888.endif 1889.endif 1890 1891stagekernel: .PHONY 1892 ${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel 1893 1894PORTSDIR?= /usr/ports 1895WSTAGEDIR?= ${OBJTOP}/worldstage 1896KSTAGEDIR?= ${OBJTOP}/kernelstage 1897REPODIR?= ${OBJROOT}repo 1898PKG_FORMAT?= txz 1899PKG_REPO_SIGNING_KEY?= # empty 1900PKG_OUTPUT_DIR?= ${PKG_VERSION} 1901 1902.ORDER: stage-packages create-packages 1903.ORDER: create-packages create-world-packages 1904.ORDER: create-packages create-kernel-packages 1905.ORDER: create-packages sign-packages 1906 1907_pkgbootstrap: .PHONY 1908.if make(*package*) && !exists(${LOCALBASE}/sbin/pkg) 1909 @env ASSUME_ALWAYS_YES=YES pkg bootstrap 1910.endif 1911 1912# 1913# Determine PKG_ABI from newvers.sh if not already set. 1914# 1915.if !defined(PKG_ABI) && (make(create-world-packages-jobs) || make(create-kernel-packages*) || make(real-update-packages) || make(sign-packages)) 1916PKG_ABI=${_TYPE}:${MAJOR_REVISION}:${TARGET_ARCH} 1917.endif 1918PKG_BIN_VERSION!=${PKG_CMD} --version </dev/null 2>/dev/null |\ 1919 awk -F. '/^[0-9.]+$$/ {print $$1 * 10000 + $$2 * 100 + $$3}' 1920.if ${PKG_BIN_VERSION} < 11700 1921PKG_EXT= ${PKG_FORMAT} 1922.else 1923PKG_EXT= pkg 1924.endif 1925 1926.if !defined(PKG_VERSION_FROM) && make(real-update-packages) 1927.if defined(PKG_ABI) 1928.if exists(${REPODIR}/${PKG_ABI}) 1929PKG_VERSION_FROM!=/usr/bin/readlink ${REPODIR}/${PKG_ABI}/latest 1930PKG_VERSION_FROM_DIR= ${REPODIR}/${PKG_ABI}/${PKG_VERSION_FROM} 1931.else 1932PKG_VERSION_FROM= 1933PKG_VERSION_FROM_DIR= 1934.endif 1935.endif 1936.endif 1937 1938PKGMAKEARGS+= PKG_VERSION=${PKG_VERSION} \ 1939 NO_INSTALLEXTRAKERNELS=${NO_INSTALLEXTRAKERNELS} 1940 1941packages: .PHONY 1942 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-packages 1943 1944update-packages: .PHONY 1945 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-update-packages 1946 1947package-pkg: .PHONY 1948 rm -rf /tmp/ports.${TARGET} || : 1949 env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \ 1950 PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \ 1951 WSTAGEDIR=${WSTAGEDIR} \ 1952 sh ${.CURDIR}/release/scripts/make-pkg-package.sh 1953 1954real-packages: stage-packages create-packages sign-packages .PHONY 1955 1956real-update-packages: stage-packages .PHONY 1957 ${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} create-packages 1958.if empty(PKG_VERSION_FROM_DIR) 1959 @echo "==> Bootstrapping repository, not checking for new packages" 1960.else 1961 @echo "==> Checking for new packages (comparing ${PKG_VERSION} to ${PKG_VERSION_FROM})" 1962 @for pkg in ${PKG_VERSION_FROM_DIR}/${PKG_NAME_PREFIX}-*; do \ 1963 pkgname=$$(pkg query -F $${pkg} '%n' | sed 's/${PKG_NAME_PREFIX}-\(.*\)/\1/') ; \ 1964 newpkgname=${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION}.${PKG_EXT} ; \ 1965 oldsum=$$(pkg query -F $${pkg} '%X') ; \ 1966 if [ ! -f ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ]; then \ 1967 continue; \ 1968 fi ; \ 1969 newsum=$$(pkg query -F ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} '%X') ; \ 1970 if [ "$${oldsum}" == "$${newsum}" ]; then \ 1971 echo "==> Keeping old ${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION_FROM}.${PKG_EXT}" ; \ 1972 rm ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ; \ 1973 cp $${pkg} ${REPODIR}/${PKG_ABI}/${PKG_VERSION} ; \ 1974 else \ 1975 echo "==> New package $${newpkgname}" ; \ 1976 fi ; \ 1977 done 1978.endif 1979 ${_+_}@cd ${.CURDIR}; \ 1980 ${MAKE} -f Makefile.inc1 PKG_VERSION=${PKG_VERSION} sign-packages 1981 1982stage-packages-world: .PHONY 1983 @mkdir -p ${WSTAGEDIR} 1984 ${_+_}@cd ${.CURDIR}; \ 1985 ${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld 1986 1987stage-packages-kernel: .PHONY 1988 @mkdir -p ${KSTAGEDIR} 1989 ${_+_}@cd ${.CURDIR}; \ 1990 ${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel 1991 1992stage-packages: .PHONY stage-packages-world stage-packages-kernel 1993 1994_repodir: .PHONY 1995 @mkdir -p ${REPODIR} 1996 1997create-packages-world: _pkgbootstrap _repodir .PHONY 1998 ${_+_}@cd ${.CURDIR}; \ 1999 ${MAKE} -f Makefile.inc1 \ 2000 DESTDIR=${WSTAGEDIR} \ 2001 PKG_VERSION=${PKG_VERSION} create-world-packages 2002 2003create-packages-kernel: _pkgbootstrap _repodir .PHONY 2004 ${_+_}@cd ${.CURDIR}; \ 2005 ${MAKE} -f Makefile.inc1 \ 2006 DESTDIR=${KSTAGEDIR} \ 2007 PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \ 2008 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 2009 create-kernel-packages 2010 2011create-packages: .PHONY create-packages-world create-packages-kernel 2012 2013create-world-packages: _pkgbootstrap .PHONY 2014 @rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || : 2015 @cd ${WSTAGEDIR} ; \ 2016 ${METALOG_SORT_CMD} ${WSTAGEDIR}/${DISTDIR}/METALOG | \ 2017 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk 2018 @for plist in ${WSTAGEDIR}/*.plist; do \ 2019 plist=$${plist##*/} ; \ 2020 pkgname=$${plist%.plist} ; \ 2021 echo "_PKGS+= $${pkgname}" ; \ 2022 done > ${WSTAGEDIR}/packages.mk 2023 ${_+_}@cd ${.CURDIR}; \ 2024 ${MAKE} -f Makefile.inc1 create-world-packages-jobs \ 2025 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 2026 .MAKE.JOB.PREFIX= 2027 2028.if make(create-world-packages-jobs) 2029.include "${WSTAGEDIR}/packages.mk" 2030.endif 2031 2032create-world-packages-jobs: .PHONY 2033.for pkgname in ${_PKGS} 2034create-world-packages-jobs: create-world-package-${pkgname} 2035create-world-package-${pkgname}: .PHONY 2036 @sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \ 2037 -s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl 2038 @awk -F\" ' \ 2039 /^name/ { printf("===> Creating %s-", $$2); next } \ 2040 /^version/ { print $$2; next } \ 2041 ' ${WSTAGEDIR}/${pkgname}.ucl 2042 @if [ "${pkgname}" == "runtime" ]; then \ 2043 sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \ 2044 fi 2045 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2046 create -f ${PKG_FORMAT} -M ${WSTAGEDIR}/${pkgname}.ucl \ 2047 -p ${WSTAGEDIR}/${pkgname}.plist \ 2048 -r ${WSTAGEDIR} \ 2049 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2050.endfor 2051 2052_default_flavor= -default 2053.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta) 2054. if ${MK_DEBUG_FILES} != "no" 2055_debug=-dbg 2056. endif 2057create-kernel-packages: .PHONY 2058. for flavor in "" ${_debug} 2059create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},} 2060create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY 2061 @cd ${KSTAGEDIR}/${DISTDIR} ; \ 2062 ${METALOG_SORT_CMD} ${KSTAGEDIR}/kernel.meta | \ 2063 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2064 -v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \ 2065 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2066 -e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \ 2067 -e "s/%KERNELDIR%/kernel/" \ 2068 -e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2069 -e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2070 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2071 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2072 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2073 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2074 ${SRCDIR}/release/packages/kernel.ucl \ 2075 > ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2076 awk -F\" ' \ 2077 /name/ { printf("===> Creating %s-", $$2); next } \ 2078 /version/ {print $$2; next } ' \ 2079 ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2080 ${PKG_CMD} -o ABI=${PKG_ABI} -o ALLOW_BASE_SHLIBS=yes \ 2081 create -f ${PKG_FORMAT} \ 2082 -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \ 2083 -p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \ 2084 -r ${KSTAGEDIR}/${DISTDIR} \ 2085 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2086. endfor 2087.endif 2088.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 2089. for _kernel in ${BUILDKERNELS:[2..-1]} 2090. if exists(${KSTAGEDIR}/kernel.${_kernel}.meta) 2091. if ${MK_DEBUG_FILES} != "no" 2092_debug=-dbg 2093. endif 2094. for flavor in "" ${_debug} 2095create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel} 2096create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY 2097 @cd ${KSTAGEDIR}/kernel.${_kernel} ; \ 2098 ${METALOG_SORT_CMD} ${KSTAGEDIR}/kernel.${_kernel}.meta | \ 2099 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2100 -v kernel=yes -v _kernconf=${_kernel} ; \ 2101 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2102 -e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \ 2103 -e "s/%KERNELDIR%/kernel.${_kernel}/" \ 2104 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2105 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2106 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2107 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2108 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2109 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2110 ${SRCDIR}/release/packages/kernel.ucl \ 2111 > ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2112 awk -F\" ' \ 2113 /name/ { printf("===> Creating %s-", $$2); next } \ 2114 /version/ {print $$2; next } ' \ 2115 ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2116 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2117 create -f ${PKG_FORMAT} \ 2118 -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \ 2119 -p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \ 2120 -r ${KSTAGEDIR}/kernel.${_kernel} \ 2121 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2122. endfor 2123. endif 2124. endfor 2125.endif 2126 2127sign-packages: _pkgbootstrap .PHONY 2128 printf "version = 2;\n" > ${WSTAGEDIR}/meta 2129.if ${PKG_BIN_VERSION} < 11700 2130 printf "packing_format = \"${PKG_FORMAT}\";\n" >> ${WSTAGEDIR}/meta 2131.endif 2132 @[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \ 2133 unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \ 2134 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \ 2135 -m ${WSTAGEDIR}/meta \ 2136 -o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2137 ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2138 ${PKG_REPO_SIGNING_KEY} ; \ 2139 cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \ 2140 ln -s ${PKG_OUTPUT_DIR} latest 2141 2142# 2143# 2144# checkworld 2145# 2146# Run test suite on installed world. 2147# 2148checkworld: .PHONY 2149 @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \ 2150 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \ 2151 exit 1; \ 2152 fi 2153 ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile 2154 2155# 2156# 2157# doxygen 2158# 2159# Build the API documentation with doxygen 2160# 2161doxygen: .PHONY 2162 @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \ 2163 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 2164 exit 1; \ 2165 fi 2166 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all 2167 2168# 2169# ------------------------------------------------------------------------ 2170# 2171# From here onwards are utility targets used by the 'make world' and 2172# related targets. If your 'world' breaks, you may like to try to fix 2173# the problem and manually run the following targets to attempt to 2174# complete the build. Beware, this is *not* guaranteed to work, you 2175# need to have a pretty good grip on the current state of the system 2176# to attempt to manually finish it. If in doubt, 'make world' again. 2177# 2178 2179# 2180# legacy: Build compatibility shims for the next three targets. This is a 2181# minimal set of tools and shims necessary to compensate for older systems 2182# which don't have the APIs required by the targets built in bootstrap-tools, 2183# build-tools or cross-tools. 2184# 2185legacy: .PHONY 2186.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0 2187 @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \ 2188 false 2189.endif 2190 2191.for _tool in \ 2192 tools/build \ 2193 ${LOCAL_LEGACY_DIRS} 2194 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \ 2195 cd ${.CURDIR}/${_tool}; \ 2196 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2197 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \ 2198 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \ 2199 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \ 2200 DESTDIR=${WORLDTMP}/legacy install 2201.endfor 2202 2203# 2204# bootstrap-tools: Build tools needed for compatibility. These are binaries that 2205# are built to build other binaries in the system. However, the focus of these 2206# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 2207# libraries, augmented by -legacy, in addition to the libraries built during 2208# bootstrap-tools. 2209# 2210_bt= _bootstrap-tools 2211 2212# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't 2213# accidentally run tools that are incompatible but happen to be in $PATH. 2214# This is especially important when building on Linux/MacOS where many of the 2215# programs used during the build accept different flags or generate different 2216# output. On those platforms we only symlink the tools known to be compatible 2217# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others 2218# from the FreeBSD sources during the bootstrap-tools stage. 2219# We want to build without the user's $PATH starting in the bootstrap-tools 2220# phase so the tools used in that phase (ln, cp, etc) must have already been 2221# linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink 2222# variable in tools/build/Makefile and are linked during the legacy phase. 2223# Since they could be Linux or MacOS binaries, too we must only use flags that 2224# are portable across operating systems. 2225 2226# If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the 2227# current source tree. Otherwise we create a symlink to the version found in 2228# $PATH during the bootstrap-tools stage. 2229# When building on non-FreeBSD systems we can't assume that the host binaries 2230# accept compatible flags or produce compatible output. Therefore we force 2231# BOOTSTRAP_ALL_TOOLS and just build the FreeBSD version of the binary. 2232.if defined(CROSSBUILD_HOST) 2233BOOTSTRAP_ALL_TOOLS:= 1 2234.endif 2235.if defined(BOOTSTRAP_ALL_TOOLS) 2236# BOOTSTRAPPING will be set on the command line so we can't override it here. 2237# Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS} 2238BOOTSTRAPPING_OSRELDATE:= 0 2239.endif 2240 2241.if ${MK_GAMES} != "no" 2242_strfile= usr.bin/fortune/strfile 2243.endif 2244 2245# vtfontcvt is used to build font files for loader and to generate 2246# C source for loader built in font (8x16.c). 2247_vtfontcvt= usr.bin/vtfontcvt 2248 2249# zic is used to compile timezone data 2250.if ${MK_ZONEINFO} != "no" 2251_zic= usr.sbin/zic 2252.endif 2253 2254# If we are not building the bootstrap because BOOTSTRAPPING is sufficient 2255# we symlink the host version to $WORLDTMP instead. By doing this we can also 2256# detect when a bootstrap tool is being used without the required MK_FOO. 2257# If you add a new bootstrap tool where we could also use the host version, 2258# please ensure that you also add a .else case where you add the tool to the 2259# _bootstrap_tools_links variable. 2260.if ${BOOTSTRAPPING} < 1000033 2261# Note: lex needs m4 to build but m4 also depends on lex (which needs m4 to 2262# generate any files). To fix this cyclic dependency we can build a bootstrap 2263# version of m4 (with pre-generated files) then use that to build the real m4. 2264# We can't simply use the host m4 since e.g. the macOS version does not accept 2265# the flags that are passed by lex. 2266# For lex we also use the pre-gerated files since we would otherwise need to 2267# build awk and sed first (which need lex to build) 2268# TODO: add a _bootstrap_lex and then build the real lex afterwards 2269_lex= usr.bin/lex 2270_m4= tools/build/bootstrap-m4 usr.bin/m4 2271${_bt}-tools/build/bootstrap-m4: ${_bt}-usr.bin/lex ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc 2272${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-usr.bin/lex ${_bt}-tools/build/bootstrap-m4 2273_bt_m4_depend=${_bt}-usr.bin/m4 2274_bt_lex_depend=${_bt}-usr.bin/lex ${_bt_m4_depend} 2275.else 2276_bootstrap_tools_links+=m4 lex 2277.endif 2278 2279# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. 2280# r296685 fix cross-endian objcopy 2281# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2. 2282# r334881 added libdwarf constants used by ctfconvert. 2283# r338478 fixed a crash in objcopy for mips64el objects 2284# r339083 libelf: correct mips64el test to use ELF header 2285# r348347 Add missing powerpc64 relocation support to libdwarf 2286.if ${BOOTSTRAPPING} < 1300030 2287_elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd 2288${_bt}-lib/libelf: ${_bt_m4_depend} 2289${_bt}-lib/libdwarf: ${_bt_m4_depend} 2290.endif 2291 2292# flua is required to regenerate syscall files. It first appeared during the 2293# 13.0-CURRENT cycle, thus needs to be built on -older releases and stable 2294# branches. 2295.if ${BOOTSTRAPPING} < 1300059 2296${_bt}-libexec/flua: ${_bt}-lib/liblua ${_bt}-lib/libucl 2297_flua= lib/liblua lib/libucl libexec/flua 2298.endif 2299 2300# r245440 mtree -N support added 2301# r313404 requires sha384.h for libnetbsd, added to libmd in r292782 2302.if ${BOOTSTRAPPING} < 1100093 2303_libnetbsd= lib/libnetbsd 2304_nmtree= lib/libmd \ 2305 usr.sbin/nmtree 2306 2307${_bt}-lib/libnetbsd: ${_bt}-lib/libmd 2308${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 2309.else 2310_bootstrap_tools_links+=mtree 2311.endif 2312 2313# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l 2314.if ${BOOTSTRAPPING} < 1000027 2315_cat= bin/cat 2316.else 2317_bootstrap_tools_links+=cat 2318.endif 2319 2320# r277259 crunchide: Correct 64-bit section header offset 2321# r281674 crunchide: always include both 32- and 64-bit ELF support 2322.if ${BOOTSTRAPPING} < 1100078 2323_crunchide= usr.sbin/crunch/crunchide 2324.else 2325_bootstrap_tools_links+=crunchide 2326.endif 2327 2328# 1400052, 1300526, 1203507: Removed -dc from linker invocation 2329.if ${BOOTSTRAPPING} < 1203507 || \ 2330 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300526) || \ 2331 (${BOOTSTRAPPING} > 1400000 && ${BOOTSTRAPPING} < 1400052) 2332_crunchgen= usr.sbin/crunch/crunchgen 2333.else 2334_bootstrap_tools_links+=crunchgen 2335.endif 2336 2337.if ${MK_DISK_IMAGE_TOOLS_BOOTSTRAP} != "no" 2338_etdump= usr.bin/etdump 2339_makefs= usr.sbin/makefs 2340 2341_libnetbsd= lib/libnetbsd 2342${_bt}-usr.sbin/makefs: ${_bt}-lib/libnetbsd 2343 2344.if defined(BOOTSTRAP_ALL_TOOLS) 2345_libsbuf= lib/libsbuf 2346${_bt}-usr.sbin/makefs: ${_bt}-lib/libsbuf 2347.endif 2348.endif 2349 2350# 1300102: VHDX support 2351.if ${BOOTSTRAPPING} < 1201520 || \ 2352 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300102) || \ 2353 ${MK_DISK_IMAGE_TOOLS_BOOTSTRAP} != "no" 2354_mkimg= usr.bin/mkimg 2355.else 2356_bootstrap_tools_links+=mkimg 2357.endif 2358 2359_yacc= usr.bin/yacc 2360 2361.if ${MK_BSNMP} != "no" 2362_gensnmptree= usr.sbin/bsnmpd/gensnmptree 2363.endif 2364 2365 2366# We need to build tblgen when we're building clang or lld, either as 2367# bootstrap tools, or as the part of the normal build. 2368# llvm-tblgen is also needed for various llvm binutils (e.g. objcopy). 2369.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2370 ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" || \ 2371 ${MK_LLDB} != "no" || ${MK_LLVM_BINUTILS} != "no" 2372_clang_tblgen= \ 2373 lib/clang/libllvmminimal \ 2374 usr.bin/clang/llvm-tblgen 2375.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2376 ${MK_LLDB} != "no" 2377_clang_tblgen+= lib/clang/libclangminimal 2378_clang_tblgen+= usr.bin/clang/clang-tblgen 2379.endif 2380.if ${MK_LLDB} != "no" 2381_clang_tblgen+= usr.bin/clang/lldb-tblgen 2382.endif 2383${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal 2384${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal 2385${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal 2386.endif 2387 2388# C.UTF-8 is always built in share/ctypes and we need localedef for that. 2389_localedef= usr.bin/localedef 2390${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2391 2392.if ${MK_ICONV} != "no" 2393_mkesdb= usr.bin/mkesdb 2394_mkcsmapper= usr.bin/mkcsmapper 2395${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2396${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2397.endif 2398 2399.if ${MK_KERBEROS} != "no" 2400_kerberos5_bootstrap_tools= \ 2401 kerberos5/tools/make-roken \ 2402 kerberos5/lib/libroken \ 2403 kerberos5/lib/libvers \ 2404 kerberos5/tools/asn1_compile \ 2405 kerberos5/tools/slc \ 2406 usr.bin/compile_et 2407 2408.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 2409.for _tool in ${_kerberos5_bootstrap_tools} 2410${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2411.endfor 2412.endif 2413 2414${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd 2415 2416# The tools listed in _basic_bootstrap_tools will generally not be 2417# bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a 2418# Linux or MacOS host the host versions are incompatible so we need to build 2419# them from the source tree. Usually the link name will be the same as the subdir, 2420# but some directories such as grep or test install multiple binaries. In that 2421# case we use the _basic_bootstrap_tools_multilink variable which is a list of 2422# subdirectory and comma-separated list of files. 2423_basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep 2424_basic_bootstrap_tools_multilink+=bin/test test,[ 2425# bootstrap tools needed by buildworld: 2426_basic_bootstrap_tools+=usr.bin/cut bin/expr usr.bin/gencat usr.bin/join \ 2427 usr.bin/mktemp bin/realpath bin/rmdir usr.bin/sed usr.bin/sort \ 2428 usr.bin/truncate usr.bin/tsort 2429# Some build scripts use nawk instead of awk (this happens at least in 2430# cddl/contrib/opensolaris/lib/libdtrace/common/mknames.sh) so we need both awk 2431# and nawk in ${WORLDTMP}/legacy/bin. 2432_basic_bootstrap_tools_multilink+=usr.bin/awk awk,nawk 2433# file2c is required for building usr.sbin/config: 2434_basic_bootstrap_tools+=usr.bin/file2c 2435# uuencode/uudecode required for share/tabset 2436_basic_bootstrap_tools_multilink+=usr.bin/bintrans uuencode,uudecode 2437# xargs is required by mkioctls 2438_basic_bootstrap_tools+=usr.bin/xargs 2439# cap_mkdb is required for share/termcap: 2440_basic_bootstrap_tools+=usr.bin/cap_mkdb 2441# services_mkdb/pwd_mkdb are required for installworld: 2442_basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb 2443# ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?) 2444.if !defined(CROSSBUILD_HOST) 2445# ldd is only needed for updating the running system so we don't need to 2446# bootstrap ldd on non-FreeBSD systems 2447_basic_bootstrap_tools+=usr.bin/ldd 2448.endif 2449# sysctl/chflags are required for installkernel: 2450.if !defined(CROSSBUILD_HOST) 2451_basic_bootstrap_tools+=bin/chflags 2452# Note: sysctl does not bootstrap on FreeBSD < 13 anymore, but that doesn't 2453# matter since we don't need any of the new features for the build. 2454_bootstrap_tools_links+=sysctl 2455.else 2456# When building on non-FreeBSD, install a fake chflags instead since the 2457# version from the source tree cannot work. We also don't need sysctl since we 2458# are install with -DNO_ROOT. 2459_other_bootstrap_tools+=tools/build/cross-build/fake_chflags 2460.endif 2461# mkfifo is used by sys/conf/newvers.sh 2462_basic_bootstrap_tools+=usr.bin/mkfifo 2463# jot is needed for the mkimg tests 2464_basic_bootstrap_tools+=usr.bin/jot 2465 2466.if ${MK_BOOT} != "no" 2467# md5 is used by boot/beri (and possibly others) 2468_basic_bootstrap_tools+=sbin/md5 2469.endif 2470 2471# tzsetup is needed as an install tool 2472.if ${MK_ZONEINFO} != "no" 2473_basic_bootstrap_tools+=usr.sbin/tzsetup 2474.endif 2475 2476.if defined(BOOTSTRAP_ALL_TOOLS) 2477_other_bootstrap_tools+=${_basic_bootstrap_tools} 2478.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2479_other_bootstrap_tools+=${_subdir} 2480.endfor 2481${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2482${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2483# If we are bootstrapping file2c, we have to build it before config: 2484${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend} 2485# Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since 2486# the links to make/bmake make links will have already have been created in the 2487# `make legacy` step. Not adding a link to make is important on non-FreeBSD 2488# since "make" will usually point to GNU make there. 2489_other_bootstrap_tools+=usr.bin/bmake 2490 2491# Avoid dependency on host bz2 headers: 2492_other_bootstrap_tools+=lib/libbz2 2493${_bt}-usr.bin/grep: ${_bt}-lib/libbz2 2494 2495# libdwarf depends on libz 2496_other_bootstrap_tools+=lib/libz 2497${_bt}-lib/libdwarf: ${_bt}-lib/libz 2498 2499# libroken depends on libcrypt 2500_other_bootstrap_tools+=lib/libcrypt 2501${_bt}-lib/libroken: ${_bt}-lib/libcrypt 2502.else 2503# All tools in _basic_bootstrap_tools have the same name as the subdirectory 2504# so we can use :T to get the name of the symlinks that we need to create. 2505_bootstrap_tools_links+=${_basic_bootstrap_tools:T} 2506.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2507_bootstrap_tools_links+=${_links:S/,/ /g} 2508.endfor 2509.endif # defined(BOOTSTRAP_ALL_TOOLS) 2510 2511# Link the tools that we need for building but don't need to bootstrap because 2512# the host version is known to be compatible into ${WORLDTMP}/legacy 2513# We do this before building any of the bootstrap tools in case they depend on 2514# the presence of any of the links (e.g. as m4/lex/awk) 2515${_bt}-links: .PHONY 2516 2517.for _tool in ${_bootstrap_tools_links} 2518${_bt}-link-${_tool}: .PHONY 2519 @rm -f "${WORLDTMP}/legacy/bin/${_tool}"; \ 2520 source_path=`which ${_tool}`; \ 2521 if [ ! -e "$${source_path}" ] ; then \ 2522 echo "Cannot find host tool '${_tool}'"; false; \ 2523 fi; \ 2524 cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}" 2525${_bt}-links: ${_bt}-link-${_tool} 2526.endfor 2527 2528bootstrap-tools: ${_bt}-links .PHONY 2529 2530# Please document (add comment) why something is in 'bootstrap-tools'. 2531# Try to bound the building of the bootstrap-tool to just the 2532# FreeBSD versions that need the tool built at this stage of the build. 2533.for _tool in \ 2534 ${_clang_tblgen} \ 2535 ${_kerberos5_bootstrap_tools} \ 2536 ${_strfile} \ 2537 usr.bin/dtc \ 2538 ${_cat} \ 2539 ${_kbdcontrol} \ 2540 ${_elftoolchain_libs} \ 2541 lib/libopenbsd \ 2542 usr.bin/mandoc \ 2543 usr.bin/rpcgen \ 2544 ${_yacc} \ 2545 ${_m4} \ 2546 ${_lex} \ 2547 ${_other_bootstrap_tools} \ 2548 usr.bin/xinstall \ 2549 ${_gensnmptree} \ 2550 usr.sbin/config \ 2551 ${_flua} \ 2552 ${_crunchide} \ 2553 ${_crunchgen} \ 2554 ${_etdump} \ 2555 ${_libnetbsd} \ 2556 ${_libsbuf} \ 2557 ${_makefs} \ 2558 ${_mkimg} \ 2559 ${_nmtree} \ 2560 ${_vtfontcvt} \ 2561 ${_localedef} \ 2562 ${_mkcsmapper} \ 2563 ${_mkesdb} \ 2564 ${_zic} \ 2565 ${LOCAL_BSTOOL_DIRS} 2566${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE 2567 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2568 cd ${.CURDIR}/${_tool}; \ 2569 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2570 if [ "${_tool}" = "usr.bin/lex" ]; then \ 2571 ${MAKE} DIRPRFX=${_tool}/ bootstrap; \ 2572 fi; \ 2573 ${MAKE} DIRPRFX=${_tool}/ all; \ 2574 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install 2575 2576bootstrap-tools: ${_bt}-${_tool} 2577.endfor 2578.if target(${_bt}-lib/libmd) 2579# If we are bootstrapping libmd (e.g. when building on macOS/Linux) add the 2580# necessary dependencies: 2581${_bt}-usr.bin/sort: ${_bt}-lib/libmd 2582${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd 2583${_bt}-sbin/md5: ${_bt}-lib/libmd 2584.endif 2585 2586 2587# 2588# build-tools: Build special purpose build tools 2589# 2590.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no" 2591_share= share/syscons/scrnmaps 2592.endif 2593 2594.if ${MK_RESCUE} != "no" 2595# rescue includes programs that have build-tools targets 2596_rescue=rescue/rescue 2597.endif 2598 2599.if ${MK_TCSH} != "no" 2600_tcsh=bin/csh 2601.endif 2602.if ${MK_FILE} != "no" 2603_libmagic=lib/libmagic 2604.endif 2605 2606.if ${MK_PMC} != "no" 2607_jevents=lib/libpmc/pmu-events 2608.endif 2609 2610# kernel-toolchain skips _cleanobj, so handle cleaning up previous 2611# build-tools directories if needed. 2612.if ${MK_CLEAN} == "yes" && make(kernel-toolchain) 2613_bt_clean= ${CLEANDIR} 2614.endif 2615 2616.for _tool in \ 2617 ${_tcsh} \ 2618 bin/sh \ 2619 ${LOCAL_TOOL_DIRS} \ 2620 ${_jevents} \ 2621 lib/ncurses/tinfo \ 2622 ${_rescue} \ 2623 ${_share} \ 2624 usr.bin/awk \ 2625 ${_libmagic} \ 2626 usr.bin/vi/catalog 2627build-tools_${_tool}: .PHONY 2628 ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \ 2629 cd ${.CURDIR}/${_tool}; \ 2630 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \ 2631 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2632 ${MAKE} DIRPRFX=${_tool}/ build-tools 2633build-tools: build-tools_${_tool} 2634.endfor 2635 2636# 2637# kernel-tools: Build kernel-building tools 2638# 2639kernel-tools: .PHONY 2640 mkdir -p ${WORLDTMP}/usr 2641 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2642 -p ${WORLDTMP}/usr >/dev/null 2643 2644# 2645# cross-tools: All the tools needed to build the rest of the system after 2646# we get done with the earlier stages. It is the last set of tools needed 2647# to begin building the target binaries. 2648# 2649.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0 2650.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 2651_btxld= usr.sbin/btxld 2652.endif 2653.endif 2654 2655# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 2656# resulting from missing bug fixes or ELF Toolchain updates. 2657.if ${MK_CDDL} != "no" 2658_dtrace_tools= cddl/lib/libctf cddl/lib/libspl cddl/usr.bin/ctfconvert \ 2659 cddl/usr.bin/ctfmerge 2660.endif 2661 2662# If we're given an XAS, don't build binutils. 2663.if ${XAS:M/*} == "" 2664.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2665_elftctools= lib/libelftc \ 2666 lib/libpe \ 2667 usr.bin/elfctl \ 2668 usr.bin/elfdump \ 2669 usr.bin/objcopy \ 2670 usr.bin/nm \ 2671 usr.bin/size \ 2672 usr.bin/strings 2673# These are not required by the build, but can be useful for developers who 2674# cross-build on a FreeBSD 10 host: 2675_elftctools+= usr.bin/addr2line 2676.endif 2677.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2678# If cross-building with an external binutils we still need to build strip for 2679# the target (for at least crunchide). 2680_elftctools= lib/libelftc \ 2681 lib/libpe \ 2682 usr.bin/elfctl \ 2683 usr.bin/elfdump \ 2684 usr.bin/objcopy 2685.endif 2686 2687.if ${MK_CLANG_BOOTSTRAP} != "no" 2688_clang= usr.bin/clang 2689.endif 2690.if ${MK_LLD_BOOTSTRAP} != "no" 2691_lld= usr.bin/clang/lld 2692.endif 2693.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no" 2694_clang_libs= lib/clang 2695.endif 2696.if ${MK_USB} != "no" 2697_usb_tools= stand/usb/tools 2698.endif 2699 2700.if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS) 2701_ar=usr.bin/ar 2702.endif 2703 2704cross-tools: .MAKE .PHONY 2705.for _tool in \ 2706 ${LOCAL_XTOOL_DIRS} \ 2707 ${_ar} \ 2708 ${_clang_libs} \ 2709 ${_clang} \ 2710 ${_lld} \ 2711 ${_elftctools} \ 2712 ${_dtrace_tools} \ 2713 ${_btxld} \ 2714 ${_usb_tools} 2715 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2716 cd ${.CURDIR}/${_tool}; \ 2717 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2718 ${MAKE} DIRPRFX=${_tool}/ all; \ 2719 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install 2720.endfor 2721 2722# 2723# native-xtools is the current target for qemu-user cross builds of ports 2724# via poudriere and the imgact_binmisc kernel module. 2725# This target merely builds a toolchan/sysroot, then builds the tools it wants 2726# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain 2727# already built. It then installs the static tools to NXBDESTDIR for Poudriere 2728# to pickup. 2729# 2730NXBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/ 2731NXBOBJTOP= ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH} 2732NXTP?= /nxb-bin 2733.if ${NXTP:N/*} 2734.error NXTP variable should be an absolute path 2735.endif 2736NXBDESTDIR?= ${DESTDIR}${NXTP} 2737 2738# This is the list of tools to be built/installed as static and where 2739# appropriate to build for the given TARGET.TARGET_ARCH. 2740NXBDIRS+= \ 2741 bin/cat \ 2742 bin/chmod \ 2743 bin/cp \ 2744 ${_tcsh} \ 2745 bin/echo \ 2746 bin/expr \ 2747 bin/hostname \ 2748 bin/ln \ 2749 bin/ls \ 2750 bin/mkdir \ 2751 bin/mv \ 2752 bin/ps \ 2753 bin/realpath \ 2754 bin/rm \ 2755 bin/rmdir \ 2756 bin/sh \ 2757 bin/sleep \ 2758 sbin/md5 \ 2759 sbin/sysctl \ 2760 usr.bin/addr2line \ 2761 usr.bin/ar \ 2762 usr.bin/awk \ 2763 usr.bin/basename \ 2764 usr.bin/bmake \ 2765 usr.bin/bzip2 \ 2766 usr.bin/cmp \ 2767 usr.bin/diff \ 2768 usr.bin/dirname \ 2769 usr.bin/objcopy \ 2770 usr.bin/env \ 2771 usr.bin/fetch \ 2772 usr.bin/find \ 2773 usr.bin/grep \ 2774 usr.bin/gzip \ 2775 usr.bin/head \ 2776 usr.bin/id \ 2777 usr.bin/lex \ 2778 usr.bin/limits \ 2779 usr.bin/mandoc \ 2780 usr.bin/mktemp \ 2781 usr.bin/mt \ 2782 usr.bin/nm \ 2783 usr.bin/patch \ 2784 usr.bin/readelf \ 2785 usr.bin/sed \ 2786 usr.bin/size \ 2787 usr.bin/sort \ 2788 usr.bin/strings \ 2789 usr.bin/tar \ 2790 usr.bin/touch \ 2791 usr.bin/tr \ 2792 usr.bin/true \ 2793 usr.bin/uniq \ 2794 usr.bin/unzip \ 2795 usr.bin/wc \ 2796 usr.bin/xargs \ 2797 usr.bin/xinstall \ 2798 usr.bin/xz \ 2799 usr.bin/yacc \ 2800 usr.sbin/chown 2801 2802SUBDIR_DEPEND_usr.bin/clang= lib/clang 2803.if ${MK_CLANG} != "no" 2804NXBDIRS+= lib/clang 2805NXBDIRS+= usr.bin/clang 2806.endif 2807# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs 2808# to be evaluated after NXBDIRS is set. 2809.if make(install) && !empty(SUBDIR_OVERRIDE) 2810SUBDIR= ${SUBDIR_OVERRIDE} 2811.endif 2812 2813NXBMAKEARGS+= \ 2814 OBJTOP=${NXBOBJTOP:Q} \ 2815 OBJROOT=${NXBOBJROOT:Q} \ 2816 -DNO_SHARED \ 2817 -DNO_CPU_CFLAGS \ 2818 -DNO_PIC \ 2819 MK_CASPER=no \ 2820 MK_CLANG_EXTRAS=no \ 2821 MK_CLANG_FORMAT=no \ 2822 MK_CLANG_FULL=no \ 2823 MK_CTF=no \ 2824 MK_DEBUG_FILES=no \ 2825 MK_HTML=no \ 2826 MK_LLDB=no \ 2827 MK_MAN=no \ 2828 MK_MAN_UTILS=yes \ 2829 MK_OFED=no \ 2830 MK_OPENSSH=no \ 2831 MK_PROFILE=no \ 2832 MK_RETPOLINE=no \ 2833 MK_SENDMAIL=no \ 2834 MK_SSP=no \ 2835 MK_TESTS=no \ 2836 MK_WERROR=no \ 2837 MK_ZFS=no 2838 2839NXBMAKEENV+= \ 2840 MAKEOBJDIRPREFIX= 2841 2842# This should match all of the knobs in lib/Makefile that it takes to avoid 2843# descending into lib/clang! 2844NXBTNOTOOLS= MK_CLANG=no MK_LLD=no MK_LLDB=no MK_LLVM_BINUTILS=no 2845 2846.if make(native-xtools*) && \ 2847 (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH)) 2848.error Missing NXB_TARGET / NXB_TARGET_ARCH 2849.endif 2850# For 'toolchain' we want to produce native binaries that themselves generate 2851# native binaries. 2852NXBTMAKE= ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \ 2853 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH} 2854# For 'everything' we want to produce native binaries (hence -target to 2855# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries. 2856# TARGET/TARGET_ARCH are still passed along from user. 2857# 2858# Use the toolchain we create as an external toolchain. 2859.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*} 2860NXBMAKE+= XCC="${XCC}" \ 2861 XCXX="${XCXX}" \ 2862 XCPP="${XCPP}" 2863.else 2864NXBMAKE+= XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \ 2865 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \ 2866 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp" 2867.endif 2868NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \ 2869 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \ 2870 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \ 2871 TARGET_TRIPLE=${MACHINE_TRIPLE:Q} 2872# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to 2873# invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS. 2874NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}' 2875# Need to avoid the -isystem logic when using clang as an external toolchain 2876# even if the TARGET being built for wants GCC. 2877NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}' 2878native-xtools: .PHONY 2879 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj 2880 # Build the bootstrap/host/cross tools that produce native binaries 2881 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain 2882 # Populate includes/libraries sysroot that produce native binaries. 2883 # This is split out from 'toolchain' above mostly so that target LLVM 2884 # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without 2885 # polluting the cross-compiler build. The LLVM libs are skipped 2886 # here to avoid the problem but are kept in 'toolchain' so that 2887 # needed build tools are built. 2888 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes ${NXBTNOTOOLS} 2889 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries ${NXBTNOTOOLS} 2890.if !defined(NO_OBJWALK) 2891 ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj 2892.endif 2893 ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything 2894 @echo ">> native-xtools done. Use 'make native-xtools-install' to install to a given DESTDIR" 2895 2896native-xtools-install: .PHONY 2897 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 2898 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2899 -p ${NXBDESTDIR}/usr >/dev/null 2900 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2901 -p ${NXBDESTDIR}/usr/include >/dev/null 2902.if ${TARGET_ARCH} == "amd64" 2903 mkdir -p ${NXBDESTDIR}/usr/include/i386 2904.endif 2905 ${_+_}cd ${.CURDIR}; ${NXBMAKE} \ 2906 DESTDIR=${NXBDESTDIR} \ 2907 -DNO_ROOT \ 2908 install 2909 2910# 2911# hierarchy - ensure that all the needed directories are present 2912# 2913hierarchy hier: .MAKE .PHONY 2914 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs 2915 2916# 2917# libraries - build all libraries, and install them under ${DESTDIR}. 2918# 2919# The list of libraries with dependents (${_prebuild_libs}) and their 2920# interdependencies (__L) are built automatically by the 2921# ${.CURDIR}/tools/make_libdeps.sh script. 2922# 2923libraries: .MAKE .PHONY 2924 ${_+_}cd ${.CURDIR}; \ 2925 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 2926 ${MAKE} -f Makefile.inc1 _startup_libs; \ 2927 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 2928 ${MAKE} -f Makefile.inc1 _generic_libs 2929 2930# 2931# static libgcc.a prerequisite for shared libc 2932# 2933_prereq_libs= lib/libcompiler_rt 2934.if ${MK_SSP} != "no" 2935_prereq_libs+= lib/libssp_nonshared 2936.endif 2937.if ${MK_ASAN} != "no" 2938_prereq_libs+= lib/libclang_rt/asan 2939_prereq_libs+= lib/libclang_rt/asan-preinit 2940_prereq_libs+= lib/libclang_rt/asan_cxx 2941.endif 2942.if ${MK_UBSAN} != "no" 2943_prereq_libs+= lib/libclang_rt/ubsan_minimal 2944_prereq_libs+= lib/libclang_rt/ubsan_standalone 2945_prereq_libs+= lib/libclang_rt/ubsan_standalone_cxx 2946.endif 2947 2948# These dependencies are not automatically generated: 2949# 2950# lib/csu and lib/libc must be built before 2951# all shared libraries for ELF. 2952# 2953_startup_libs= lib/csu 2954_startup_libs+= lib/libc 2955_startup_libs+= lib/libc_nonshared 2956_startup_libs+= lib/libcxxrt 2957 2958_prereq_libs+= lib/libgcc_eh lib/libgcc_s 2959_startup_libs+= lib/libgcc_eh lib/libgcc_s 2960 2961lib/libgcc_s__L: lib/libc__L 2962lib/libgcc_s__L: lib/libc_nonshared__L 2963lib/libcxxrt__L: lib/libgcc_s__L 2964 2965_prebuild_libs= ${_kerberos5_lib_libasn1} \ 2966 ${_kerberos5_lib_libhdb} \ 2967 ${_kerberos5_lib_libheimbase} \ 2968 ${_kerberos5_lib_libheimntlm} \ 2969 ${_libsqlite3} \ 2970 ${_kerberos5_lib_libheimipcc} \ 2971 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 2972 ${_kerberos5_lib_libroken} \ 2973 ${_kerberos5_lib_libwind} \ 2974 lib/libbz2 ${_libcom_err} lib/libcrypt \ 2975 lib/libc++ \ 2976 lib/libelf lib/libexpat \ 2977 lib/libfigpar \ 2978 ${_lib_libgssapi} \ 2979 lib/libjail \ 2980 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 2981 lib/libzstd \ 2982 ${_lib_casper} \ 2983 lib/ncurses/tinfo \ 2984 lib/ncurses/ncurses \ 2985 lib/ncurses/form \ 2986 lib/libpam/libpam lib/libthr \ 2987 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 2988 lib/libgeom \ 2989 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 2990 ${_cddl_lib_libuutil} \ 2991 ${_cddl_lib_libavl} \ 2992 ${_cddl_lib_libicp} \ 2993 ${_cddl_lib_libicp_rescue} \ 2994 ${_cddl_lib_libspl} \ 2995 ${_cddl_lib_libtpool} \ 2996 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \ 2997 ${_cddl_lib_libzutil} \ 2998 ${_cddl_lib_libctf} ${_cddl_lib_libzfsbootenv} \ 2999 lib/libufs \ 3000 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 3001 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \ 3002 ${_lib_libldns} ${_secure_lib_libssh} 3003 3004.if ${MK_DIALOG} != "no" 3005_prebuild_libs+= gnu/lib/libdialog 3006gnu/lib/libdialog__L: lib/msun__L lib/ncurses/tinfo__L lib/ncurses/ncurses__L 3007.endif 3008 3009.if ${MK_GOOGLETEST} != "no" 3010_prebuild_libs+= lib/libregex 3011.endif 3012 3013lib/libgeom__L: lib/libexpat__L lib/libsbuf__L 3014lib/libkvm__L: lib/libelf__L 3015 3016.if ${MK_RADIUS_SUPPORT} != "no" 3017_lib_libradius= lib/libradius 3018.endif 3019 3020lib/ncurses/ncurses__L: lib/ncurses/tinfo__L 3021lib/ncurses/form__L: lib/ncurses/ncurses__L 3022 3023.if ${MK_OFED} != "no" 3024_prebuild_libs+= \ 3025 lib/ofed/libibverbs \ 3026 lib/ofed/libibmad \ 3027 lib/ofed/libibumad \ 3028 lib/ofed/complib \ 3029 lib/ofed/libmlx5 3030 3031lib/ofed/libibmad__L: lib/ofed/libibumad__L 3032lib/ofed/complib__L: lib/libthr__L 3033lib/ofed/libmlx5__L: lib/ofed/libibverbs__L lib/libthr__L 3034.endif 3035 3036.if ${MK_CASPER} != "no" 3037_lib_casper= lib/libcasper 3038.endif 3039 3040lib/libpjdlog__L: lib/libutil__L 3041lib/libcasper__L: lib/libnv__L 3042lib/liblzma__L: lib/libmd__L lib/libthr__L 3043lib/libzstd__L: lib/libthr__L 3044 3045_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} 3046.if ${MK_IPFILTER} != "no" 3047_generic_libs+= sbin/ipf/libipf 3048.endif 3049.for _DIR in ${LOCAL_LIB_DIRS} 3050.if ${_DIR} == ".WAIT" || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 3051_generic_libs+= ${_DIR} 3052.endif 3053.endfor 3054 3055lib/libtacplus__L: lib/libmd__L 3056 3057.if ${MK_CDDL} != "no" 3058_cddl_lib_libumem= cddl/lib/libumem 3059_cddl_lib_libnvpair= cddl/lib/libnvpair 3060_cddl_lib_libavl= cddl/lib/libavl 3061_cddl_lib_libuutil= cddl/lib/libuutil 3062_cddl_lib_libspl= cddl/lib/libspl 3063 3064cddl/lib/libavl__L: cddl/lib/libspl__L 3065cddl/lib/libnvpair__L: cddl/lib/libspl__L 3066cddl/lib/libuutil__L: cddl/lib/libavl__L cddl/lib/libspl__L 3067 3068.if ${MK_ZFS} != "no" 3069_cddl_lib_libicp= cddl/lib/libicp 3070_cddl_lib_libicp_rescue= cddl/lib/libicp_rescue 3071_cddl_lib_libtpool= cddl/lib/libtpool 3072_cddl_lib_libzutil= cddl/lib/libzutil 3073_cddl_lib_libzfs_core= cddl/lib/libzfs_core 3074_cddl_lib_libzfs= cddl/lib/libzfs 3075_cddl_lib_libzfsbootenv= cddl/lib/libzfsbootenv 3076 3077cddl/lib/libtpool__L: cddl/lib/libspl__L 3078 3079cddl/lib/libzutil__L: cddl/lib/libavl__L lib/libgeom__L lib/msun__L cddl/lib/libtpool__L 3080 3081cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L cddl/lib/libspl__L cddl/lib/libzutil__L 3082 3083cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L 3084cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L 3085cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L 3086cddl/lib/libzfs__L: cddl/lib/libnvpair__L cddl/lib/libzutil__L 3087cddl/lib/libzfs__L: secure/lib/libcrypto__L 3088 3089cddl/lib/libzfsbootenv__L: cddl/lib/libzfs__L 3090lib/libbe__L: cddl/lib/libzfs__L cddl/lib/libzfsbootenv__L 3091.endif 3092_cddl_lib_libctf= cddl/lib/libctf 3093_cddl_lib= cddl/lib 3094cddl/lib/libctf__L: lib/libz__L cddl/lib/libspl__L 3095.endif 3096# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db 3097_prebuild_libs+= lib/libprocstat lib/libproc lib/librtld_db 3098lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L 3099lib/libproc__L: lib/libprocstat__L 3100lib/librtld_db__L: lib/libprocstat__L 3101 3102.if ${MK_CRYPT} != "no" 3103.if ${MK_OPENSSL} != "no" 3104_secure_lib_libcrypto= secure/lib/libcrypto 3105_secure_lib_libssl= secure/lib/libssl 3106lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 3107secure/lib/libcrypto__L: lib/libthr__L 3108.if ${MK_LDNS} != "no" 3109_lib_libldns= lib/libldns 3110lib/libldns__L: secure/lib/libssl__L 3111.endif 3112.if ${MK_OPENSSH} != "no" 3113_secure_lib_libssh= secure/lib/libssh 3114secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 3115.if ${MK_LDNS} != "no" 3116secure/lib/libssh__L: lib/libldns__L 3117.endif 3118.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 3119secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ 3120 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 3121 lib/libmd__L kerberos5/lib/libroken__L 3122.endif 3123.endif 3124.endif 3125_secure_lib= secure/lib 3126.endif 3127 3128.if ${MK_KERBEROS} != "no" 3129kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L 3130kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3131 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ 3132 kerberos5/lib/libwind__L lib/libsqlite3__L 3133kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ 3134 kerberos5/lib/libroken__L lib/libcom_err__L 3135kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3136 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L 3137kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3138 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ 3139 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ 3140 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L 3141kerberos5/lib/libroken__L: lib/libcrypt__L 3142kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L 3143kerberos5/lib/libheimbase__L: lib/libthr__L 3144kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L 3145.endif 3146 3147lib/libsqlite3__L: lib/libthr__L 3148 3149.if ${MK_GSSAPI} != "no" 3150_lib_libgssapi= lib/libgssapi 3151.endif 3152 3153.if ${MK_KERBEROS} != "no" 3154_kerberos5_lib= kerberos5/lib 3155_kerberos5_lib_libasn1= kerberos5/lib/libasn1 3156_kerberos5_lib_libhdb= kerberos5/lib/libhdb 3157_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase 3158_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 3159_kerberos5_lib_libhx509= kerberos5/lib/libhx509 3160_kerberos5_lib_libroken= kerberos5/lib/libroken 3161_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 3162_libsqlite3= lib/libsqlite3 3163_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc 3164_kerberos5_lib_libwind= kerberos5/lib/libwind 3165_libcom_err= lib/libcom_err 3166.endif 3167 3168.if ${MK_NIS} != "no" 3169_lib_libypclnt= lib/libypclnt 3170.endif 3171 3172.if ${MK_OPENSSL} == "no" 3173lib/libradius__L: lib/libmd__L 3174.endif 3175 3176lib/libproc__L: \ 3177 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} \ 3178 lib/libelf__L lib/librtld_db__L lib/libutil__L lib/libcxxrt__L 3179 3180.for _lib in ${_prereq_libs} 3181${_lib}__PL: .PHONY .MAKE 3182.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3183 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3184 cd ${.CURDIR}/${_lib}; \ 3185 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3186 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3187 DIRPRFX=${_lib}/ all; \ 3188 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3189 DIRPRFX=${_lib}/ install 3190.endif 3191.endfor 3192 3193.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs} 3194${_lib}__L: .PHONY .MAKE 3195.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3196 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3197 cd ${.CURDIR}/${_lib}; \ 3198 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3199 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \ 3200 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 3201.endif 3202.endfor 3203 3204_prereq_libs: ${_prereq_libs:S/$/__PL/} 3205_startup_libs: ${_startup_libs:S/$/__L/} 3206_prebuild_libs: ${_prebuild_libs:S/$/__L/} 3207_generic_libs: ${_generic_libs:S/$/__L/} 3208 3209# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from 3210# 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely 3211# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE 3212# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in 3213# parallel. This is safe for the world stage of buildworld though since it has 3214# already built libraries in a proper order and installed includes into 3215# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to 3216# avoid trashing a system if it crashes mid-install. 3217.if !make(all) || defined(_PARALLEL_SUBDIR_OK) 3218SUBDIR_PARALLEL= 3219.endif 3220 3221.include <bsd.subdir.mk> 3222 3223.if make(check-old) || make(check-old-dirs) || \ 3224 make(check-old-files) || make(check-old-libs) || \ 3225 make(delete-old) || make(delete-old-dirs) || \ 3226 make(delete-old-files) || make(delete-old-libs) || \ 3227 make(list-old-dirs) || make(list-old-files) || make(list-old-libs) 3228 3229# 3230# check for / delete old files section 3231# 3232 3233.include "ObsoleteFiles.inc" 3234 3235OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 3236else you can not start such an application. Consult UPDATING for more \ 3237information regarding how to cope with the removal/revision bump of a \ 3238specific library." 3239 3240.if !defined(BATCH_DELETE_OLD_FILES) 3241RM_I=-i 3242.else 3243RM_I=-fv 3244.endif 3245 3246list-old-files: .PHONY 3247 @cd ${.CURDIR}; \ 3248 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3249 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" \ 3250 -V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib32," \ 3251 -V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib32," | \ 3252 sed -E 's/[[:space:]]+/\n/g' | sort 3253 3254delete-old-files: .PHONY 3255 @echo ">>> Removing old files (only deletes safe to delete libs)" 3256# Ask for every old file if the user really wants to remove it. 3257# It's annoying, but better safe than sorry. 3258# NB: We cannot pass the list of OLD_FILES as a parameter because the 3259# argument list will get too long. Using .for/.endfor make "loops" will make 3260# the Makefile parser segfault. 3261 @exec 3<&0; \ 3262 cd ${.CURDIR}; \ 3263 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3264 while read file; do \ 3265 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3266 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3267 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3268 fi; \ 3269 for ext in debug symbols; do \ 3270 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3271 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3272 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3273 <&3; \ 3274 fi; \ 3275 done; \ 3276 done 3277# Remove catpages without corresponding manpages. 3278 @exec 3<&0; \ 3279 find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \ 3280 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3281 while read catpage; do \ 3282 read manpage; \ 3283 if [ ! -e "$${manpage}" ]; then \ 3284 rm ${RM_I} $${catpage} <&3; \ 3285 fi; \ 3286 done 3287 @echo ">>> Old files removed" 3288 3289check-old-files: .PHONY 3290 @echo ">>> Checking for old files" 3291 @cd ${.CURDIR}; \ 3292 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3293 while read file; do \ 3294 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3295 echo "${DESTDIR}/$${file}"; \ 3296 fi; \ 3297 for ext in debug symbols; do \ 3298 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3299 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3300 fi; \ 3301 done; \ 3302 done 3303# Check for catpages without corresponding manpages. 3304 @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 3305 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3306 while read catpage; do \ 3307 read manpage; \ 3308 if [ ! -e "$${manpage}" ]; then \ 3309 echo $${catpage}; \ 3310 fi; \ 3311 done | sort 3312 3313list-old-libs: .PHONY 3314 @cd ${.CURDIR}; \ 3315 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3316 -V OLD_LIBS -V MOVED_LIBS -V "OLD_LIBS:Mlib/*:S,^lib,usr/lib32," \ 3317 -V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib32," \ 3318 -V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib32," | \ 3319 sed -E 's/[[:space:]]+/\n/g' | sort 3320 3321delete-old-libs: .PHONY 3322 @echo ">>> Removing old libraries" 3323 @echo "${OLD_LIBS_MESSAGE}" | fmt 3324 @exec 3<&0; \ 3325 cd ${.CURDIR}; \ 3326 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3327 while read file; do \ 3328 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3329 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3330 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3331 fi; \ 3332 for ext in debug symbols; do \ 3333 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3334 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3335 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3336 <&3; \ 3337 fi; \ 3338 done; \ 3339 done 3340 @echo ">>> Old libraries removed" 3341 3342check-old-libs: .PHONY 3343 @echo ">>> Checking for old libraries" 3344 @cd ${.CURDIR}; \ 3345 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3346 while read file; do \ 3347 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3348 echo "${DESTDIR}/$${file}"; \ 3349 fi; \ 3350 for ext in debug symbols; do \ 3351 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3352 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3353 fi; \ 3354 done; \ 3355 done 3356 3357list-old-dirs: .PHONY 3358 @cd ${.CURDIR}; \ 3359 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3360 -V OLD_DIRS | sed -E 's/[[:space:]]+/\n/g' | sort -r 3361 3362delete-old-dirs: .PHONY 3363 @echo ">>> Removing old directories" 3364 @cd ${.CURDIR}; \ 3365 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3366 while read dir; do \ 3367 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3368 rmdir -v "${DESTDIR}/$${dir}" || true; \ 3369 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3370 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3371 fi; \ 3372 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3373 rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \ 3374 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3375 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3376 fi; \ 3377 done 3378 @echo ">>> Old directories removed" 3379 3380check-old-dirs: .PHONY 3381 @echo ">>> Checking for old directories" 3382 @cd ${.CURDIR}; \ 3383 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3384 while read dir; do \ 3385 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3386 echo "${DESTDIR}/$${dir}"; \ 3387 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3388 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3389 fi; \ 3390 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3391 echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \ 3392 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3393 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3394 fi; \ 3395 done 3396 3397delete-old: delete-old-files delete-old-dirs .PHONY 3398 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3399 3400check-old: check-old-files check-old-libs check-old-dirs .PHONY 3401 @echo "To remove old files and directories run '${MAKE_CMD} delete-old'." 3402 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3403 3404.endif 3405 3406# 3407# showconfig - show build configuration. 3408# 3409showconfig: .PHONY 3410 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}; \ 3411 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u 3412 3413.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 3414DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 3415 3416.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 3417.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF}) 3418FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 3419 '${KERNCONFDIR}/${KERNCONF}' ; echo 3420.endif 3421.endif 3422 3423.endif 3424 3425.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 3426DTBOUTPUTPATH= ${.CURDIR} 3427.endif 3428 3429# 3430# Build 'standalone' Device Tree Blob 3431# 3432builddtb: .PHONY 3433 @PATH=${TMPPATH:Q} MACHINE=${TARGET} \ 3434 sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 3435 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 3436 3437############### 3438 3439# cleanworld 3440# In the following, the first 'rm' in a series will usually remove all 3441# files and directories. If it does not, then there are probably some 3442# files with file flags set, so this unsets them and tries the 'rm' a 3443# second time. There are situations where this target will be cleaning 3444# some directories via more than one method, but that duplication is 3445# needed to correctly handle all the possible situations. Removing all 3446# files without file flags set in the first 'rm' instance saves time, 3447# because 'chflags' will need to operate on fewer files afterwards. 3448# 3449# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be 3450# created by bsd.obj.mk, except that we don't want to .include that file 3451# in this makefile. We don't do a cleandir walk if MK_AUTO_OBJ is yes 3452# since it is not possible for files to land in the wrong place. 3453# 3454.if make(cleanworld) 3455BW_CANONICALOBJDIR:=${OBJTOP}/ 3456.elif make(cleankernel) 3457BW_CANONICALOBJDIR:=${KRNLOBJDIR}/${KERNCONF}/ 3458.elif make(cleanuniverse) 3459BW_CANONICALOBJDIR:=${OBJROOT} 3460.if ${MK_UNIFIED_OBJDIR} == "no" 3461.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled. 3462.endif 3463.endif 3464cleanworld cleanuniverse cleankernel: .PHONY 3465.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \ 3466 ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA} 3467 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3468 -chflags -R 0 ${BW_CANONICALOBJDIR} 3469 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3470.endif 3471.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \ 3472 (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA}) 3473.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} 3474 # To be safe in this case, fall back to a 'make cleandir' 3475 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir 3476.endif 3477.endif 3478 3479.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 3480XDEV_CPUTYPE?=${CPUTYPE} 3481.else 3482XDEV_CPUTYPE?=${TARGET_CPUTYPE} 3483.endif 3484 3485NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 3486 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 3487 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \ 3488 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 3489 CPUTYPE=${XDEV_CPUTYPE} 3490 3491XDDIR=${TARGET_ARCH}-freebsd 3492XDTP?=/usr/${XDDIR} 3493.if ${XDTP:N/*} 3494.error XDTP variable should be an absolute path 3495.endif 3496 3497CDBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/ 3498CDBOBJTOP= ${CDBOBJROOT}${XDDIR} 3499CDBENV= \ 3500 INSTALL="sh ${.CURDIR}/tools/install.sh" 3501CDENV= ${CDBENV} \ 3502 TOOLS_PREFIX=${XDTP} 3503CDMAKEARGS= \ 3504 OBJTOP=${CDBOBJTOP:Q} \ 3505 OBJROOT=${CDBOBJROOT:Q} 3506CD2MAKEARGS= ${CDMAKEARGS} 3507 3508.if ${WANT_COMPILER_TYPE} == gcc || \ 3509 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 3510# GCC requires -isystem and -L when using a cross-compiler. --sysroot 3511# won't set header path and -L is used to ensure the base library path 3512# is added before the port PREFIX library path. 3513CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib 3514# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler 3515# combined with --sysroot. 3516CD2CFLAGS+= -B${XDDESTDIR}/usr/lib 3517# Force using libc++ for external GCC. 3518.if defined(X_COMPILER_TYPE) && \ 3519 ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800 3520CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \ 3521 -nostdinc++ 3522.endif 3523.endif 3524CD2CFLAGS+= --sysroot=${XDDESTDIR}/ 3525CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \ 3526 CPP="${CPP} ${CD2CFLAGS}" \ 3527 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 3528 3529CDTMP= ${OBJTOP}/${XDDIR}/tmp 3530CDMAKE=${CDENV} PATH=${CDTMP:Q}/usr/bin:${PATH:Q} ${MAKE} ${CDMAKEARGS} ${NOFUN} 3531CD2MAKE=${CD2ENV} PATH=${CDTMP:Q}/usr/bin:${XDDESTDIR:Q}/usr/bin:${PATH:Q} \ 3532 ${MAKE} ${CD2MAKEARGS} ${NOFUN} 3533.if ${MK_META_MODE} != "no" 3534# Don't rebuild build-tools targets during normal build. 3535CD2MAKE+= BUILD_TOOLS_META=.NOMETA 3536.endif 3537XDDESTDIR=${DESTDIR}${XDTP} 3538 3539.ORDER: xdev-build xdev-install xdev-links 3540xdev: xdev-build xdev-install .PHONY 3541 3542.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 3543xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY 3544 3545_xb-worldtmp: .PHONY 3546 mkdir -p ${CDTMP}/usr 3547 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3548 -p ${CDTMP}/usr >/dev/null 3549 3550_xb-bootstrap-tools: .PHONY 3551.for _tool in \ 3552 ${_clang_tblgen} \ 3553 ${_yacc} 3554 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 3555 cd ${.CURDIR}/${_tool}; \ 3556 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3557 ${CDMAKE} DIRPRFX=${_tool}/ all; \ 3558 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 3559.endfor 3560 3561_xb-build-tools: .PHONY 3562 ${_+_}@cd ${.CURDIR}; \ 3563 ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools 3564 3565XDEVDIRS= \ 3566 ${_clang_libs} \ 3567 ${_lld} \ 3568 ${_elftctools} \ 3569 usr.bin/ar \ 3570 ${_clang} 3571 3572_xb-cross-tools: .PHONY 3573.for _tool in ${XDEVDIRS} 3574 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \ 3575 cd ${.CURDIR}/${_tool}; \ 3576 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3577 ${CDMAKE} DIRPRFX=${_tool}/ all 3578.endfor 3579 3580_xi-mtree: .PHONY 3581 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 3582 mkdir -p ${XDDESTDIR} 3583 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 3584 -p ${XDDESTDIR} >/dev/null 3585 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3586 -p ${XDDESTDIR}/usr >/dev/null 3587 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 3588 -p ${XDDESTDIR}/usr/include >/dev/null 3589.if ${TARGET_ARCH} == "amd64" 3590 mkdir -p ${XDDESTDIR}/usr/include/i386 3591.endif 3592.if defined(_LIBCOMPAT) 3593 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 3594 -p ${XDDESTDIR}/usr >/dev/null 3595.endif 3596.if ${MK_TESTS} != "no" 3597 mkdir -p ${XDDESTDIR}${TESTSBASE} 3598 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 3599 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 3600.endif 3601 3602.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 3603xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY 3604 3605_xi-cross-tools: .PHONY 3606 @echo "_xi-cross-tools" 3607.for _tool in ${XDEVDIRS} 3608 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 3609 cd ${.CURDIR}/${_tool}; \ 3610 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 3611.endfor 3612 3613_xi-includes: .PHONY 3614.if !defined(NO_OBJWALK) 3615 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \ 3616 DESTDIR=${XDDESTDIR} 3617.endif 3618 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \ 3619 DESTDIR=${XDDESTDIR} 3620 3621_xi-libraries: .PHONY 3622 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 3623 DESTDIR=${XDDESTDIR} 3624 3625xdev-links: .PHONY 3626 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 3627 mkdir -p ../../../../usr/bin; \ 3628 for i in *; do \ 3629 ln -sf ../../${XDTP}/usr/bin/$$i \ 3630 ../../../../usr/bin/${XDDIR}-$$i; \ 3631 ln -sf ../../${XDTP}/usr/bin/$$i \ 3632 ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \ 3633 done 3634