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