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_ABI= gnueabihf 136.else 137TARGET_ABI= gnueabi 138.endif 139.endif 140MACHINE_ABI?= unknown 141MACHINE_TRIPLE?=${MACHINE_ARCH:S/amd64/x86_64/:C/sf$//}-${MACHINE_ABI}-freebsd${OS_REVISION} 142TARGET_ABI?= unknown 143TARGET_TRIPLE?= ${TARGET_ARCH:S/amd64/x86_64/:C/sf$//}-${TARGET_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}:${PATH} \ 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_CLANG_IS_CC=${MK_CLANG_BOOTSTRAP} \ 763 MK_LLDB=no \ 764 MK_LLVM_BINUTILS=no \ 765 MK_TESTS=no 766 767# kernel-tools stage 768KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 769 PATH=${BPATH}:${PATH} \ 770 WORLDTMP=${WORLDTMP} \ 771 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 772 773KTMAKE= ${TIME_ENV} \ 774 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \ 775 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 776 DESTDIR= \ 777 OBJTOP='${WORLDTMP}/obj-kernel-tools' \ 778 OBJROOT='$${OBJTOP}/' \ 779 MAKEOBJDIRPREFIX= \ 780 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 781 -DNO_CPU_CFLAGS \ 782 -DNO_LINT \ 783 -DNO_PIC \ 784 -DNO_SHARED \ 785 MK_CTF=no \ 786 MK_HTML=no \ 787 MK_MAN=no \ 788 MK_PROFILE=no \ 789 MK_SSP=no \ 790 MK_RETPOLINE=no \ 791 MK_WERROR=no 792 793# world stage 794WMAKEENV= ${CROSSENV} \ 795 INSTALL="${INSTALL_CMD} -U" \ 796 PATH=${TMPPATH} \ 797 SYSROOT=${WORLDTMP} 798 799# make hierarchy 800HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} 801.if defined(NO_ROOT) 802HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT 803.endif 804 805CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \ 806 CPP="${XCPP} ${XCFLAGS}" \ 807 AS="${XAS}" AR="${XAR}" ELFCTL="${XELFCTL}" LD="${XLD}" \ 808 LLVM_LINK="${XLLVM_LINK}" NM=${XNM} OBJCOPY="${XOBJCOPY}" \ 809 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ 810 SIZE="${XSIZE}" STRIPBIN="${XSTRIPBIN}" 811 812.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) 813# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a 814# directory, but the compiler will look in the right place for its 815# tools so we don't need to tell it where to look. 816BFLAGS+= -B${CROSS_BINUTILS_PREFIX} 817.endif 818 819 820# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX 821# and target set by TARGET/TARGET_ARCH. However, there are several needs to 822# always pass an explicit --sysroot and -target. 823# - External compiler needs sysroot and target flags. 824# - External ld needs sysroot. 825# - To be clear about the use of a sysroot when using the internal compiler. 826# - Easier debugging. 827# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to 828# the flip-flopping build command when sometimes using external and 829# sometimes using internal. 830# - Allow using lld which has no support for default paths. 831.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX}) 832BFLAGS+= -B${WORLDTMP}/usr/bin 833.endif 834.if ${WANT_COMPILER_TYPE} == gcc || \ 835 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 836.elif ${WANT_COMPILER_TYPE} == clang || \ 837 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang) 838XCFLAGS+= -target ${TARGET_TRIPLE} 839.endif 840XCFLAGS+= --sysroot=${WORLDTMP} 841 842.if !empty(BFLAGS) 843XCFLAGS+= ${BFLAGS} 844.endif 845 846.if ${MK_LIB32} == "yes" 847_LIBCOMPAT= 32 848.include "Makefile.libcompat" 849.endif 850 851# META_MODE normally ignores host file changes since every build updates 852# timestamps (see NO_META_IGNORE_HOST in sys.mk). There are known times 853# when the ABI breaks though that we want to force rebuilding WORLDTMP 854# to get updated host tools. 855.if ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" && \ 856 !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \ 857 !defined(_MKSHOWCONFIG) 858# r318736 - ino64 major ABI breakage 859META_MODE_BAD_ABI_VERS+= 1200031 860 861.if !defined(OBJDIR_HOST_OSRELDATE) 862.if exists(${OBJTOP}/host-osreldate.h) 863OBJDIR_HOST_OSRELDATE!= \ 864 awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 865 ${OBJTOP}/host-osreldate.h 866.elif exists(${WORLDTMP}/usr/include/osreldate.h) 867OBJDIR_HOST_OSRELDATE= 0 868.endif 869.export OBJDIR_HOST_OSRELDATE 870.endif 871 872# Note that this logic is the opposite of normal BOOTSTRAP handling. We want 873# to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE. If the WORLDTMP 874# is older than the ABI-breakage OSRELDATE of the HOST then we rebuild. 875.if defined(OBJDIR_HOST_OSRELDATE) 876.for _ver in ${META_MODE_BAD_ABI_VERS} 877.if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver} 878_meta_mode_need_rebuild= ${_ver} 879.endif 880.endfor 881.if defined(_meta_mode_need_rebuild) 882.info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}. 883NO_META_IGNORE_HOST_HEADERS= 1 884.export NO_META_IGNORE_HOST_HEADERS 885.endif # defined(_meta_mode_need_rebuild) 886.endif # defined(OBJDIR_HOST_OSRELDATE) 887.endif # ${MK_META_MODE} == "yes" && ${MK_CLEAN} == "no" ... 888# This is only used for META_MODE+filemon to track what the oldest 889# __FreeBSD_version is in WORLDTMP. This purposely does NOT have 890# a make dependency on /usr/include/osreldate.h as the file should 891# only be copied when it is missing or meta mode determines it has changed. 892# Since host files are normally ignored without NO_META_IGNORE_HOST 893# the file will never be updated unless that flag is specified. This 894# allows tracking the oldest osreldate to force rebuilds via 895# META_MODE_BADABI_REVS above. 896host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here 897.if !defined(CROSSBUILD_HOST) 898 @cp -f /usr/include/osreldate.h ${.TARGET} 899.else 900 @echo "#ifndef __FreeBSD_version" > ${.TARGET} 901 @echo "#define __FreeBSD_version ${OSRELDATE}" >> ${.TARGET} 902 @echo "#endif" >> ${.TARGET} 903.endif 904 905WMAKE= ${TIME_ENV} ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 906 BWPHASE=${.TARGET:C,^_,,} \ 907 DESTDIR=${WORLDTMP} 908 909IMAKEENV= ${CROSSENV} 910IMAKE= ${TIME_ENV} ${IMAKEENV} ${MAKE} -f Makefile.inc1 \ 911 ${IMAKE_INSTALL} ${IMAKE_MTREE} 912.if empty(.MAKEFLAGS:M-n) 913IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ 914 LD_LIBRARY_PATH=${INSTALLTMP} \ 915 PATH_LOCALE=${INSTALLTMP}/locale 916IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh 917.else 918IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} 919.endif 920 921# When generating install media, do not allow user and group information from 922# the build host to affect the contents of the distribution. 923.if make(distributeworld) || make(distrib-dirs) || make(distribution) || \ 924 make(stageworld) 925DB_FROM_SRC= yes 926.endif 927 928.if defined(DB_FROM_SRC) 929INSTALLFLAGS+= -N ${.CURDIR}/etc 930MTREEFLAGS+= -N ${.CURDIR}/etc 931.endif 932_INSTALL_DDIR= ${DESTDIR}/${DISTDIR} 933INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::} 934.if defined(NO_ROOT) 935METALOG?= ${DESTDIR}/${DISTDIR}/METALOG 936METALOG:= ${METALOG:C,//+,/,g} 937IMAKE+= -DNO_ROOT METALOG=${METALOG} 938METALOG_INSTALLFLAGS= -U -M ${METALOG} -D ${INSTALL_DDIR} 939INSTALLFLAGS+= ${METALOG_INSTALLFLAGS} 940CERTCTLFLAGS= ${METALOG_INSTALLFLAGS} 941MTREEFLAGS+= -W 942.endif 943.if defined(BUILD_PKGS) 944INSTALLFLAGS+= -h sha256 945.endif 946.if defined(DB_FROM_SRC) || defined(NO_ROOT) 947IMAKE_INSTALL= INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" 948IMAKE_MTREE= MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" 949.endif 950.if make(distributeworld) 951CERTCTLDESTDIR= ${DESTDIR}/${DISTDIR}/base 952.else 953CERTCTLDESTDIR= ${DESTDIR} 954.endif 955 956DESTDIR_MTREEFLAGS= -deU 957# When creating worldtmp we don't need to set the directories as owned by root 958# so we also pass -W 959WORLDTMP_MTREEFLAGS= -deUW 960.if defined(NO_ROOT) 961# When building with -DNO_ROOT we shouldn't be changing the directories 962# that are created by mtree to be owned by root/wheel. 963DESTDIR_MTREEFLAGS+= -W 964.endif 965DISTR_MTREE= ${MTREE_CMD} 966.if ${BUILD_WITH_STRICT_TMPPATH} != 0 967DISTR_MTREE= ${WORLDTMP}/legacy/usr/sbin/mtree 968.endif 969WORLDTMP_MTREE= ${DISTR_MTREE} ${WORLDTMP_MTREEFLAGS} 970DESTDIR_MTREE= ${DISTR_MTREE} ${DESTDIR_MTREEFLAGS} 971 972# kernel stage 973KMAKEENV= ${WMAKEENV:NSYSROOT=*} 974KMAKE= ${TIME_ENV} ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} 975 976# 977# buildworld 978# 979# Attempt to rebuild the entire system, with reasonable chance of 980# success, regardless of how old your existing system is. 981# 982_sanity_check: .PHONY .MAKE 983.if ${.CURDIR:C/[^,]//g} != "" 984# The m4 build of sendmail files doesn't like it if ',' is used 985# anywhere in the path of it's files. 986 @echo 987 @echo "*** Error: path to source tree contains a comma ','" 988 @echo 989 @false 990.elif ${.CURDIR:M*\:*} != "" 991# Using ':' leaks into PATH and breaks finding cross-tools. 992 @echo 993 @echo "*** Error: path to source tree contains a colon ':'" 994 @echo 995 @false 996.endif 997 998# Our current approach to dependency tracking cannot cope with certain source 999# tree changes, particularly with respect to removing source files and 1000# replacing generated files. Handle these cases here in an ad-hoc fashion. 1001_cleanobj_fast_depend_hack: .PHONY 1002 @echo ">>> Deleting stale dependencies..."; 1003 sh ${.CURDIR}/tools/build/depend-cleanup.sh ${OBJTOP} 1004 1005_worldtmp: .PHONY 1006 @echo 1007 @echo "--------------------------------------------------------------" 1008 @echo ">>> Rebuilding the temporary build tree" 1009 @echo "--------------------------------------------------------------" 1010.if ${MK_CLEAN} == "yes" 1011 rm -rf ${WORLDTMP} 1012.else 1013# Note: for delete-old we need to set $PATH to also include the host $PATH 1014# since otherwise a partial build with missing symlinks in ${WORLDTMP}/legacy/ 1015# will fail to run due to missing binaries. $WMAKE sets PATH to only ${TMPPATH} 1016# so we remove that assingnment from $WMAKE and prepend the new $PATH 1017 ${_+_}@if [ -e "${WORLDTMP}" ]; then \ 1018 echo ">>> Deleting stale files in build tree..."; \ 1019 cd ${.CURDIR}; env PATH=${TMPPATH}:${PATH} ${WMAKE:NPATH=*} \ 1020 _NO_INCLUDE_COMPILERMK=t -DBATCH_DELETE_OLD_FILES delete-old \ 1021 delete-old-libs >/dev/null; \ 1022 fi 1023 rm -rf ${WORLDTMP}/legacy/usr/include 1024.if ${USING_SYSTEM_COMPILER} == "yes" 1025.for cc in cc c++ 1026 if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \ 1027 inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \ 1028 find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \ 1029 fi 1030.endfor 1031.endif # ${USING_SYSTEM_COMPILER} == "yes" 1032.if ${USING_SYSTEM_LINKER} == "yes" 1033 @rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld 1034.endif # ${USING_SYSTEM_LINKER} == "yes" 1035.endif # ${MK_CLEAN} == "yes" 1036 @mkdir -p ${WORLDTMP} 1037 @touch ${WORLDTMP}/${.TARGET} 1038# We can't use mtree to create the worldtmp directories since it may not be 1039# available on the target system (this happens e.g. when building on non-FreeBSD) 1040 ${_+_}cd ${.CURDIR}/tools/build; \ 1041 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs 1042# In order to build without inheriting $PATH we need to add symlinks to the host 1043# tools in $WORLDTMP for the tools that we don't build during bootstrap-tools 1044 ${_+_}cd ${.CURDIR}/tools/build; \ 1045 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks 1046 1047_legacy: 1048 @echo 1049 @echo "--------------------------------------------------------------" 1050 @echo ">>> stage 1.1: legacy release compatibility shims" 1051 @echo "--------------------------------------------------------------" 1052 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy 1053_bootstrap-tools: 1054 @echo 1055 @echo "--------------------------------------------------------------" 1056 @echo ">>> stage 1.2: bootstrap tools" 1057 @echo "--------------------------------------------------------------" 1058 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools 1059 mkdir -p ${WORLDTMP}/usr ${WORLDTMP}/lib/casper ${WORLDTMP}/lib/geom \ 1060 ${WORLDTMP}/bin 1061 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1062 -p ${WORLDTMP}/usr >/dev/null 1063 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1064 -p ${WORLDTMP}/usr/include >/dev/null 1065.if ${TARGET_ARCH} == "amd64" 1066 mkdir -p ${WORLDTMP}/usr/include/i386 1067.endif 1068 ln -sf ${.CURDIR}/sys ${WORLDTMP} 1069.if ${MK_DEBUG_FILES} != "no" 1070 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1071 -p ${WORLDTMP}/usr/lib >/dev/null 1072.endif 1073.for _mtree in ${LOCAL_MTREE} 1074 ${WORLDTMP_MTREE} -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null 1075.endfor 1076_cleanobj: 1077.if ${MK_CLEAN} == "yes" 1078 @echo 1079 @echo "--------------------------------------------------------------" 1080 @echo ">>> stage 2.1: cleaning up the object tree" 1081 @echo "--------------------------------------------------------------" 1082 # Avoid including bsd.compiler.mk in clean and obj with _NO_INCLUDE_COMPILERMK 1083 # since the restricted $PATH might not contain a valid cc binary 1084 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t ${CLEANDIR} 1085.if defined(_LIBCOMPAT) 1086 ${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR} 1087.endif 1088.else 1089 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack 1090.endif # ${MK_CLEAN} == "yes" 1091_obj: 1092 @echo 1093 @echo "--------------------------------------------------------------" 1094 @echo ">>> stage 2.2: rebuilding the object tree" 1095 @echo "--------------------------------------------------------------" 1096 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t obj 1097_build-tools: 1098 @echo 1099 @echo "--------------------------------------------------------------" 1100 @echo ">>> stage 2.3: build tools" 1101 @echo "--------------------------------------------------------------" 1102 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools 1103_cross-tools: 1104 @echo 1105 @echo "--------------------------------------------------------------" 1106 @echo ">>> stage 3: cross tools" 1107 @echo "--------------------------------------------------------------" 1108 @rm -f ${OBJTOP}/toolchain-metadata.mk 1109 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools 1110 ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools 1111_build-metadata: 1112 @echo 1113 @echo "--------------------------------------------------------------" 1114 @echo ">>> stage 3.1: recording build metadata" 1115 @echo "--------------------------------------------------------------" 1116 ${_+_}cd ${.CURDIR}; ${WMAKE} toolchain-metadata.mk 1117 ${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h 1118_includes: 1119 @echo 1120 @echo "--------------------------------------------------------------" 1121 @echo ">>> stage 4.1: building includes" 1122 @echo "--------------------------------------------------------------" 1123# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need 1124# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. 1125 ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ 1126 MK_INCLUDES=yes includes 1127.if !empty(SUBDIR_OVERRIDE) && make(buildworld) 1128 ${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes 1129.endif 1130 ${_+_}cd ${.CURDIR}; ${WMAKE} test-includes 1131_libraries: 1132 @echo 1133 @echo "--------------------------------------------------------------" 1134 @echo ">>> stage 4.2: building libraries" 1135 @echo "--------------------------------------------------------------" 1136 ${_+_}cd ${.CURDIR}; \ 1137 ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \ 1138 MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} \ 1139 libraries 1140everything: .PHONY 1141 @echo 1142 @echo "--------------------------------------------------------------" 1143 @echo ">>> stage 4.4: building everything" 1144 @echo "--------------------------------------------------------------" 1145 ${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all 1146 1147WMAKE_TGTS= 1148.if !defined(WORLDFAST) 1149WMAKE_TGTS+= _sanity_check _worldtmp _legacy 1150.if empty(SUBDIR_OVERRIDE) 1151WMAKE_TGTS+= _bootstrap-tools 1152.endif 1153WMAKE_TGTS+= _cleanobj 1154.if !defined(NO_OBJWALK) 1155WMAKE_TGTS+= _obj 1156.endif 1157WMAKE_TGTS+= _build-tools _cross-tools 1158WMAKE_TGTS+= _build-metadata 1159WMAKE_TGTS+= _includes 1160.endif 1161.if !defined(NO_LIBS) 1162WMAKE_TGTS+= _libraries 1163.endif 1164.if defined(_LIBCOMPAT) && empty(SUBDIR_OVERRIDE) 1165WMAKE_TGTS+= build${libcompat} 1166.endif 1167WMAKE_TGTS+= everything 1168 1169# record buildworld time in seconds 1170.if make(buildworld) 1171_BUILDWORLD_START!= date '+%s' 1172.export _BUILDWORLD_START 1173.endif 1174 1175buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY 1176.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 1177 1178_ncpu_cmd=sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo unknown 1179 1180buildworld_prologue: .PHONY 1181 @echo "--------------------------------------------------------------" 1182 @echo ">>> World build started on `LC_ALL=C date`" 1183 @echo "--------------------------------------------------------------" 1184 1185buildworld_epilogue: .PHONY 1186 @echo 1187 @echo "--------------------------------------------------------------" 1188 @echo ">>> World build completed on `LC_ALL=C date`" 1189 @seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \ 1190 echo -n ">>> World built in $$seconds seconds, "; \ 1191 echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" 1192 @echo "--------------------------------------------------------------" 1193 1194# 1195# We need to have this as a target because the indirection between Makefile 1196# and Makefile.inc1 causes the correct PATH to be used, rather than a 1197# modification of the current environment's PATH. In addition, we need 1198# to quote multiword values. 1199# 1200buildenvvars: .PHONY 1201 @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} 1202 1203.if ${.TARGETS:Mbuildenv} 1204.if ${.MAKEFLAGS:M-j} 1205.error The buildenv target is incompatible with -j 1206.endif 1207.endif 1208BUILDENV_DIR?= ${.CURDIR} 1209# 1210# Note: make will report any errors the shell reports. This can 1211# be odd if the last command in an interactive shell generates an 1212# error or is terminated by SIGINT. These reported errors look bad, 1213# but are harmless. Allowing them also allows BUILDENV_SHELL to 1214# be a complex command whose status will be returned to the caller. 1215# Some scripts in tools rely on this behavior to report build errors. 1216# 1217buildenv: .PHONY 1218 @echo Entering world for ${TARGET_ARCH}:${TARGET} 1219.if ${BUILDENV_SHELL:M*zsh*} 1220 @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} 1221.endif 1222 @cd ${BUILDENV_DIR} && env ${WMAKEENV} \ 1223 INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" \ 1224 MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" BUILDENV=1 ${BUILDENV_SHELL} 1225 1226TOOLCHAIN_TGTS= ${WMAKE_TGTS:Neverything:Nbuild${libcompat}} 1227toolchain: ${TOOLCHAIN_TGTS} .PHONY 1228KERNEL_TOOLCHAIN_TGTS= ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries} 1229.if make(kernel-toolchain) 1230.ORDER: ${KERNEL_TOOLCHAIN_TGTS} 1231.endif 1232kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY 1233 1234# 1235# installcheck 1236# 1237# Checks to be sure system is ready for installworld/installkernel. 1238# 1239installcheck: _installcheck_world _installcheck_kernel .PHONY 1240_installcheck_world: .PHONY 1241 @echo "--------------------------------------------------------------" 1242 @echo ">>> Install check world" 1243 @echo "--------------------------------------------------------------" 1244_installcheck_kernel: .PHONY 1245 @echo "--------------------------------------------------------------" 1246 @echo ">>> Install check kernel" 1247 @echo "--------------------------------------------------------------" 1248 1249# 1250# Require DESTDIR to be set if installing for a different architecture or 1251# using the user/group database in the source tree. 1252# 1253.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ 1254 defined(DB_FROM_SRC) 1255.if !make(distributeworld) 1256_installcheck_world: __installcheck_DESTDIR 1257_installcheck_kernel: __installcheck_DESTDIR 1258__installcheck_DESTDIR: .PHONY 1259.if !defined(DESTDIR) || empty(DESTDIR) 1260 @echo "ERROR: Please set DESTDIR!"; \ 1261 false 1262.endif 1263.endif 1264.endif 1265 1266.if !defined(DB_FROM_SRC) 1267# 1268# Check for missing UIDs/GIDs. 1269# 1270CHECK_UIDS= auditdistd 1271CHECK_GIDS= audit 1272CHECK_UIDS+= ntpd 1273CHECK_GIDS+= ntpd 1274CHECK_UIDS+= proxy 1275CHECK_GIDS+= proxy authpf 1276CHECK_UIDS+= smmsp 1277CHECK_GIDS+= smmsp 1278CHECK_UIDS+= unbound 1279CHECK_GIDS+= unbound 1280_installcheck_world: __installcheck_UGID 1281__installcheck_UGID: .PHONY 1282.for uid in ${CHECK_UIDS} 1283 @if ! `id -u ${uid} >/dev/null 2>&1`; then \ 1284 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ 1285 false; \ 1286 fi 1287.endfor 1288.for gid in ${CHECK_GIDS} 1289 @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ 1290 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ 1291 false; \ 1292 fi 1293.endfor 1294.endif 1295# 1296# If installing over the running system (DESTDIR is / or unset) and the install 1297# includes rescue, try running rescue from the objdir as a sanity check. If 1298# rescue is not functional (e.g., because it depends on a system call not 1299# supported by the currently running kernel), abort the installation. 1300# 1301.if !make(distributeworld) && ${MK_RESCUE} != "no" && \ 1302 (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH) 1303_installcheck_world: __installcheck_sh_check 1304__installcheck_sh_check: .PHONY 1305 @if [ "`${OBJTOP}/rescue/rescue/rescue sh -c 'echo OK'`" != \ 1306 OK ]; then \ 1307 echo "rescue/sh check failed, installation aborted" >&2; \ 1308 false; \ 1309 fi 1310.endif 1311 1312# 1313# Required install tools to be saved in a scratch dir for safety. 1314# 1315.if ${MK_ZONEINFO} != "no" 1316_zoneinfo= zic tzsetup 1317.endif 1318 1319.if !defined(CROSSBUILD_HOST) 1320_sysctl=sysctl 1321.endif 1322 1323ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ 1324 date echo egrep find grep id install ${_install-info} \ 1325 ln make mkdir mtree mv pwd_mkdb \ 1326 rm sed services_mkdb sh sort strip ${_sysctl} test time true uname wc \ 1327 ${_zoneinfo} ${LOCAL_ITOOLS} 1328 1329# Needed for share/man 1330.if ${MK_MAN_UTILS} != "no" 1331ITOOLS+=makewhatis 1332.endif 1333 1334# 1335# distributeworld 1336# 1337# Distributes everything compiled by a `buildworld'. 1338# 1339# installworld 1340# 1341# Installs everything compiled by a 'buildworld'. 1342# 1343 1344# Non-base distributions produced by the base system 1345EXTRA_DISTRIBUTIONS= 1346.if defined(_LIBCOMPAT) 1347EXTRA_DISTRIBUTIONS+= lib${libcompat} 1348.endif 1349.if ${MK_TESTS} != "no" 1350EXTRA_DISTRIBUTIONS+= tests 1351.endif 1352 1353DEBUG_DISTRIBUTIONS= 1354.if ${MK_DEBUG_FILES} != "no" 1355DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,tests,,} 1356.endif 1357 1358MTREE_MAGIC?= mtree 2.0 1359 1360distributeworld installworld stageworld: _installcheck_world .PHONY 1361 mkdir -p ${INSTALLTMP} 1362 progs=$$(for prog in ${ITOOLS}; do \ 1363 if progpath=`env PATH=${TMPPATH} which $$prog`; then \ 1364 echo $$progpath; \ 1365 else \ 1366 echo "Required tool $$prog not found in PATH ($$PATH)." >&2; \ 1367 exit 1; \ 1368 fi; \ 1369 done); \ 1370 if [ -z "${CROSSBUILD_HOST}" ] ; then \ 1371 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ 1372 while read line; do \ 1373 case $$line in \ 1374 "["*"]") \ 1375 continue;; \ 1376 esac; \ 1377 set -- $$line; \ 1378 if [ "$$2 $$3" != "not found" ]; then \ 1379 echo $$2; \ 1380 else \ 1381 echo "Required library $$1 not found." >&2; \ 1382 exit 1; \ 1383 fi; \ 1384 done); \ 1385 fi; \ 1386 cp $$libs $$progs ${INSTALLTMP} 1387 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale 1388.if defined(NO_ROOT) 1389 -mkdir -p ${METALOG:H} 1390 echo "#${MTREE_MAGIC}" > ${METALOG} 1391.endif 1392.if make(distributeworld) 1393.for dist in ${EXTRA_DISTRIBUTIONS} 1394 -mkdir ${DESTDIR}/${DISTDIR}/${dist} 1395 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 1396 -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null 1397 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1398 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1399 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1400 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null 1401.if ${TARGET_ARCH} == "amd64" 1402 -mkdir ${DESTDIR}/${DISTDIR}/usr/include/i386 1403.endif 1404.if ${MK_DEBUG_FILES} != "no" 1405 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1406 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null 1407.endif 1408.if defined(_LIBCOMPAT) 1409 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1410 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1411.if ${MK_DEBUG_FILES} != "no" 1412 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1413 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null 1414.endif 1415.endif 1416.if ${MK_TESTS} != "no" && ${dist} == "tests" 1417 -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} 1418 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1419 -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null 1420.if ${MK_DEBUG_FILES} != "no" 1421 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1422 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null 1423.endif 1424.endif 1425.if defined(NO_ROOT) 1426 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ 1427 sed -e 's#^\./#./${dist}/#' >> ${METALOG} 1428 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \ 1429 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1430 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ 1431 sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} 1432.if ${TARGET_ARCH} == "amd64" 1433 echo "./${dist}/usr/include/i386 type=dir uname=root gname=wheel mode=0755" >> ${METALOG} 1434.endif 1435.if defined(_LIBCOMPAT) 1436 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \ 1437 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1438.endif 1439.endif 1440.endfor 1441 -mkdir ${DESTDIR}/${DISTDIR}/base 1442 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1443 METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ 1444 DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ 1445 LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs 1446 ${INSTALL_SYMLINK} ${INSTALLFLAGS} usr/src/sys ${INSTALL_DDIR}/base/sys 1447.endif # make(distributeworld) 1448 ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ 1449 ${IMAKEENV} rm -rf ${INSTALLTMP} 1450.if make(distributeworld) 1451.for dist in ${EXTRA_DISTRIBUTIONS} 1452 find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete 1453.endfor 1454.if defined(NO_ROOT) 1455.for dist in base ${EXTRA_DISTRIBUTIONS} 1456 @# For each file that exists in this dist, print the corresponding 1457 @# line from the METALOG. This relies on the fact that 1458 @# a line containing only the filename will sort immediately before 1459 @# the relevant mtree line. 1460 cd ${DESTDIR}/${DISTDIR}; \ 1461 find ./${dist} | sort -u ${METALOG} - | \ 1462 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1463 ${DESTDIR}/${DISTDIR}/${dist}.meta 1464.endfor 1465.for dist in ${DEBUG_DISTRIBUTIONS} 1466 @# For each file that exists in this dist, print the corresponding 1467 @# line from the METALOG. This relies on the fact that 1468 @# a line containing only the filename will sort immediately before 1469 @# the relevant mtree line. 1470 cd ${DESTDIR}/${DISTDIR}; \ 1471 find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ 1472 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1473 ${DESTDIR}/${DISTDIR}/${dist}.debug.meta 1474.endfor 1475.endif 1476.endif # make(distributeworld) 1477.if !make(packageworld) && ${MK_CAROOT} != "no" 1478 @if which openssl>/dev/null; then \ 1479 DESTDIR=${CERTCTLDESTDIR} PATH=${TMPPATH}:${PATH} \ 1480 sh ${SRCTOP}/usr.sbin/certctl/certctl.sh ${CERTCTLFLAGS} rehash \ 1481 else \ 1482 echo "No openssl on the host, not rehashing certificates target -- /etc/ssl may not be populated."; \ 1483 fi 1484.endif 1485 1486packageworld: .PHONY 1487.for dist in base ${EXTRA_DISTRIBUTIONS} 1488.if defined(NO_ROOT) 1489 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1490 tar cvf - --exclude usr/lib/debug \ 1491 @${DESTDIR}/${DISTDIR}/${dist}.meta | \ 1492 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1493.else 1494 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1495 tar cvf - --exclude usr/lib/debug . | \ 1496 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1497.endif 1498.endfor 1499 1500.for dist in ${DEBUG_DISTRIBUTIONS} 1501. if defined(NO_ROOT) 1502 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1503 tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ 1504 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1505. else 1506 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1507 tar cvLf - usr/lib/debug | \ 1508 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1509. endif 1510.endfor 1511 1512makeman: .PHONY 1513 ${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \ 1514 ${.CURDIR}/share/man/man5/src.conf.5 1515 1516# Ensure no regressions in self-includeability of sys/*.h and net*/*.h 1517test-includes: .PHONY 1518 ${_+_}cd ${.CURDIR}/tools/build/test-includes; \ 1519 ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} DESTDIR=${WORLDTMP} test-includes 1520 1521# We can't assume here that ${TMPPATH} will include ${PATH} or /usr/libexec 1522# because we may be building with a STRICTTMPPATH, so we explicitly include 1523# /usr/libexec here for flua. ${TMPPATH} still usefully includes anything else 1524# we may need to function. 1525_sysent_PATH= ${TMPPATH}:/usr/libexec 1526_sysent_dirs= sys/kern 1527_sysent_dirs+= sys/compat/freebsd32 1528_sysent_dirs+= sys/amd64/linux \ 1529 sys/amd64/linux32 \ 1530 sys/arm64/linux \ 1531 sys/i386/linux 1532 1533sysent: .PHONY 1534.for _dir in ${_sysent_dirs} 1535sysent-${_dir}: .PHONY 1536 @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent" 1537 ${_+_}@env PATH=${_sysent_PATH} ${MAKE} -C ${.CURDIR}/${_dir} sysent 1538 1539sysent: sysent-${_dir} 1540.endfor 1541 1542# 1543# reinstall 1544# 1545# If you have a build server, you can NFS mount the source and obj directories 1546# and do a 'make reinstall' on the *client* to install new binaries from the 1547# most recent server build. 1548# 1549restage reinstall: .MAKE .PHONY 1550 @echo "--------------------------------------------------------------" 1551 @echo ">>> Making hierarchy" 1552 @echo "--------------------------------------------------------------" 1553 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1554 LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy 1555.if make(restage) 1556 @echo "--------------------------------------------------------------" 1557 @echo ">>> Making distribution" 1558 @echo "--------------------------------------------------------------" 1559 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1560 LOCAL_MTREE=${LOCAL_MTREE:Q} distribution 1561.endif 1562 @echo 1563 @echo "--------------------------------------------------------------" 1564 @echo ">>> Installing everything started on `LC_ALL=C date`" 1565 @echo "--------------------------------------------------------------" 1566 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 1567.if defined(_LIBCOMPAT) 1568 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat} 1569.endif 1570 @echo "--------------------------------------------------------------" 1571 @echo ">>> Installing everything completed on `LC_ALL=C date`" 1572 @echo "--------------------------------------------------------------" 1573 1574redistribute: .MAKE .PHONY 1575 @echo "--------------------------------------------------------------" 1576 @echo ">>> Distributing everything" 1577 @echo "--------------------------------------------------------------" 1578 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 1579.if defined(_LIBCOMPAT) 1580 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \ 1581 DISTRIBUTION=lib${libcompat} 1582.endif 1583 1584distrib-dirs distribution: .MAKE .PHONY 1585 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1586 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1587.if make(distribution) 1588 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ 1589 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ 1590 METALOG=${METALOG} MK_TESTS=no \ 1591 MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} installconfig 1592.endif 1593 1594# 1595# buildkernel and installkernel 1596# 1597# Which kernels to build and/or install is specified by setting 1598# KERNCONF. If not defined a GENERIC kernel is built/installed. 1599# Only the existing (depending TARGET) config files are used 1600# for building kernels and only the first of these is designated 1601# as the one being installed. 1602# 1603# Note that we have to use TARGET instead of TARGET_ARCH when 1604# we're in kernel-land. Since only TARGET_ARCH is (expected) to 1605# be set to cross-build, we have to make sure TARGET is set 1606# properly. 1607 1608.if defined(KERNFAST) 1609NO_KERNELCLEAN= t 1610NO_KERNELCONFIG= t 1611NO_KERNELOBJ= t 1612# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 1613.if !defined(KERNCONF) && ${KERNFAST} != "1" 1614KERNCONF=${KERNFAST} 1615.endif 1616.endif 1617.if ${TARGET_ARCH} == "powerpc64" 1618KERNCONF?= GENERIC64 1619.elif ${TARGET_ARCH} == "powerpc64le" 1620KERNCONF?= GENERIC64LE 1621.elif ${TARGET_ARCH} == "powerpcspe" 1622KERNCONF?= MPC85XXSPE 1623.else 1624KERNCONF?= GENERIC 1625.endif 1626INSTKERNNAME?= kernel 1627 1628KERNSRCDIR?= ${.CURDIR}/sys 1629KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 1630KRNLOBJDIR= ${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,} 1631KERNCONFDIR?= ${KRNLCONFDIR} 1632 1633BUILDKERNELS= 1634INSTALLKERNEL= 1635.if defined(NO_INSTALLKERNEL) 1636# All of the BUILDKERNELS loops start at index 1. 1637BUILDKERNELS+= dummy 1638.endif 1639.for _kernel in ${KERNCONF} 1640.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel}) 1641BUILDKERNELS+= ${_kernel} 1642.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL) 1643INSTALLKERNEL= ${_kernel} 1644.endif 1645.else 1646.if make(buildkernel) 1647.error Missing KERNCONF ${KERNCONFDIR}/${_kernel} 1648.endif 1649.endif 1650.endfor 1651 1652_cleankernobj_fast_depend_hack: .PHONY 1653# 20191009 r353340 removal of opensolaris_atomic.S (also r353381) 1654.if ${MACHINE} != i386 1655.for f in opensolaris_atomic 1656.for m in opensolaris zfs 1657 @if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \ 1658 grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \ 1659 echo "Removing stale dependencies for opensolaris_atomic"; \ 1660 rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \ 1661 fi 1662.endfor 1663.endfor 1664.endif 1665 1666${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY 1667 1668# record kernel(s) build time in seconds 1669.if make(buildkernel) 1670_BUILDKERNEL_START!= date '+%s' 1671.endif 1672 1673# 1674# buildkernel 1675# 1676# Builds all kernels defined by BUILDKERNELS. 1677# 1678buildkernel: .MAKE .PHONY 1679.if empty(BUILDKERNELS:Ndummy) 1680 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 1681 false 1682.endif 1683 @echo 1684.for _kernel in ${BUILDKERNELS:Ndummy} 1685 @echo "--------------------------------------------------------------" 1686 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 1687 @echo "--------------------------------------------------------------" 1688 @echo "===> ${_kernel}" 1689 mkdir -p ${KRNLOBJDIR} 1690.if !defined(NO_KERNELCONFIG) 1691 @echo 1692 @echo "--------------------------------------------------------------" 1693 @echo ">>> stage 1: configuring the kernel" 1694 @echo "--------------------------------------------------------------" 1695 cd ${KRNLCONFDIR}; \ 1696 PATH=${TMPPATH} \ 1697 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 1698 -I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \ 1699 '${KERNCONFDIR}/${_kernel}' 1700.endif 1701.if ${MK_CLEAN} == "yes" && !defined(NO_KERNELCLEAN) 1702 @echo 1703 @echo "--------------------------------------------------------------" 1704 @echo ">>> stage 2.1: cleaning up the object tree" 1705 @echo "--------------------------------------------------------------" 1706 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 1707.else 1708 ${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack 1709.endif 1710.if !defined(NO_KERNELOBJ) 1711 @echo 1712 @echo "--------------------------------------------------------------" 1713 @echo ">>> stage 2.2: rebuilding the object tree" 1714 @echo "--------------------------------------------------------------" 1715 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 1716.endif 1717 @echo 1718 @echo "--------------------------------------------------------------" 1719 @echo ">>> stage 2.3: build tools" 1720 @echo "--------------------------------------------------------------" 1721 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools 1722 @echo 1723 @echo "--------------------------------------------------------------" 1724 @echo ">>> stage 3.1: building everything" 1725 @echo "--------------------------------------------------------------" 1726 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 1727 @echo "--------------------------------------------------------------" 1728 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 1729 @echo "--------------------------------------------------------------" 1730 1731.endfor 1732 @seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \ 1733 echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \ 1734 echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" 1735 @echo "--------------------------------------------------------------" 1736 1737.if !make(packages) && !make(update-packages) 1738NO_INSTALLEXTRAKERNELS?= yes 1739.else 1740# packages/update-packages installs kernels to a staging directory then builds 1741# packages from the result to be installed, typically to other systems. It is 1742# less surprising for these targets to honor KERNCONF if multiple kernels are 1743# specified. 1744NO_INSTALLEXTRAKERNELS?= no 1745.endif 1746 1747# 1748# installkernel, etc. 1749# 1750# Install the kernel defined by INSTALLKERNEL 1751# 1752installkernel installkernel.debug \ 1753reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY 1754.if !defined(NO_INSTALLKERNEL) 1755.if empty(INSTALLKERNEL) 1756 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1757 false 1758.endif 1759 @echo "--------------------------------------------------------------" 1760 @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)" 1761 @echo "--------------------------------------------------------------" 1762 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1763 ${CROSSENV} PATH=${TMPPATH} \ 1764 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 1765 @echo "--------------------------------------------------------------" 1766 @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)" 1767 @echo "--------------------------------------------------------------" 1768.endif 1769.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1770.for _kernel in ${BUILDKERNELS:[2..-1]} 1771 @echo "--------------------------------------------------------------" 1772 @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)" 1773 @echo "--------------------------------------------------------------" 1774 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1775 ${CROSSENV} PATH=${TMPPATH} \ 1776 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} 1777 @echo "--------------------------------------------------------------" 1778 @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)" 1779 @echo "--------------------------------------------------------------" 1780.endfor 1781.endif 1782 1783distributekernel distributekernel.debug: .PHONY 1784.if !defined(NO_INSTALLKERNEL) 1785.if empty(INSTALLKERNEL) 1786 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1787 false 1788.endif 1789 mkdir -p ${DESTDIR}/${DISTDIR} 1790.if defined(NO_ROOT) 1791 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta 1792.endif 1793 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1794 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ 1795 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ 1796 DESTDIR=${INSTALL_DDIR}/kernel \ 1797 ${.TARGET:S/distributekernel/install/} 1798.if defined(NO_ROOT) 1799 @sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ 1800 ${DESTDIR}/${DISTDIR}/kernel.meta 1801.endif 1802.endif 1803.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1804.for _kernel in ${BUILDKERNELS:[2..-1]} 1805.if defined(NO_ROOT) 1806 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta 1807.endif 1808 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1809 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ 1810 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \ 1811 KERNEL=${INSTKERNNAME}.${_kernel} \ 1812 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ 1813 ${.TARGET:S/distributekernel/install/} 1814.if defined(NO_ROOT) 1815 @sed -e "s|^./kernel.${_kernel}|.|" \ 1816 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ 1817 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta 1818.endif 1819.endfor 1820.endif 1821 1822packagekernel: .PHONY 1823.if defined(NO_ROOT) 1824.if !defined(NO_INSTALLKERNEL) 1825 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1826 tar cvf - --exclude '*.debug' \ 1827 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1828 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1829.endif 1830.if ${MK_DEBUG_FILES} != "no" 1831 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1832 tar cvf - --include '*/*/*.debug' \ 1833 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1834 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1835.endif 1836.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1837.for _kernel in ${BUILDKERNELS:[2..-1]} 1838 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1839 tar cvf - --exclude '*.debug' \ 1840 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1841 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1842.if ${MK_DEBUG_FILES} != "no" 1843 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1844 tar cvf - --include '*/*/*.debug' \ 1845 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1846 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1847.endif 1848.endfor 1849.endif 1850.else 1851.if !defined(NO_INSTALLKERNEL) 1852 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1853 tar cvf - --exclude '*.debug' . | \ 1854 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1855.endif 1856.if ${MK_DEBUG_FILES} != "no" 1857 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1858 tar cvf - --include '*/*/*.debug' $$(eval find .) | \ 1859 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1860.endif 1861.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1862.for _kernel in ${BUILDKERNELS:[2..-1]} 1863 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1864 tar cvf - --exclude '*.debug' . | \ 1865 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1866.if ${MK_DEBUG_FILES} != "no" 1867 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1868 tar cvf - --include '*/*/*.debug' $$(eval find .) | \ 1869 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1870.endif 1871.endfor 1872.endif 1873.endif 1874 1875stagekernel: .PHONY 1876 ${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel 1877 1878PORTSDIR?= /usr/ports 1879WSTAGEDIR?= ${OBJTOP}/worldstage 1880KSTAGEDIR?= ${OBJTOP}/kernelstage 1881REPODIR?= ${OBJROOT}repo 1882PKG_FORMAT?= txz 1883PKG_REPO_SIGNING_KEY?= # empty 1884PKG_OUTPUT_DIR?= ${PKG_VERSION} 1885 1886.ORDER: stage-packages create-packages 1887.ORDER: create-packages create-world-packages 1888.ORDER: create-packages create-kernel-packages 1889.ORDER: create-packages sign-packages 1890 1891_pkgbootstrap: .PHONY 1892.if make(*package*) && !exists(${LOCALBASE}/sbin/pkg) 1893 @env ASSUME_ALWAYS_YES=YES pkg bootstrap 1894.endif 1895 1896# 1897# Determine PKG_ABI from newvers.sh if not already set. 1898# 1899.if !defined(PKG_ABI) && (make(create-world-packages-jobs) || make(create-kernel-packages*) || make(real-update-packages) || make(sign-packages)) 1900PKG_ABI=${_TYPE}:${_REVISION:S/\..*$//}:${TARGET_ARCH} 1901.endif 1902PKG_BIN_VERSION!=${PKG_CMD} --version </dev/null 2>/dev/null |\ 1903 awk -F. '/^[0-9.]+$$/ {print $$1 * 10000 + $$2 * 100 + $$3}' 1904.if ${PKG_BIN_VERSION} < 11700 1905PKG_EXT= ${PKG_FORMAT} 1906.else 1907PKG_EXT= pkg 1908.endif 1909 1910.if !defined(PKG_VERSION_FROM) && make(real-update-packages) 1911.if defined(PKG_ABI) 1912.if exists(${REPODIR}/${PKG_ABI}) 1913PKG_VERSION_FROM!=/usr/bin/readlink ${REPODIR}/${PKG_ABI}/latest 1914PKG_VERSION_FROM_DIR= ${REPODIR}/${PKG_ABI}/${PKG_VERSION_FROM} 1915.else 1916PKG_VERSION_FROM= 1917PKG_VERSION_FROM_DIR= 1918.endif 1919.endif 1920.endif 1921 1922PKGMAKEARGS+= PKG_VERSION=${PKG_VERSION} \ 1923 NO_INSTALLEXTRAKERNELS=${NO_INSTALLEXTRAKERNELS} 1924 1925packages: .PHONY 1926 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-packages 1927 1928update-packages: .PHONY 1929 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-update-packages 1930 1931package-pkg: .PHONY 1932 rm -rf /tmp/ports.${TARGET} || : 1933 env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \ 1934 PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \ 1935 WSTAGEDIR=${WSTAGEDIR} \ 1936 sh ${.CURDIR}/release/scripts/make-pkg-package.sh 1937 1938real-packages: stage-packages create-packages sign-packages .PHONY 1939 1940real-update-packages: stage-packages .PHONY 1941 ${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} create-packages 1942.if empty(PKG_VERSION_FROM_DIR) 1943 @echo "==> Bootstrapping repository, not checking for new packages" 1944.else 1945 @echo "==> Checking for new packages (comparing ${PKG_VERSION} to ${PKG_VERSION_FROM})" 1946 @for pkg in ${PKG_VERSION_FROM_DIR}/${PKG_NAME_PREFIX}-*; do \ 1947 pkgname=$$(pkg query -F $${pkg} '%n' | sed 's/${PKG_NAME_PREFIX}-\(.*\)/\1/') ; \ 1948 newpkgname=${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION}.${PKG_EXT} ; \ 1949 oldsum=$$(pkg query -F $${pkg} '%X') ; \ 1950 if [ ! -f ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ]; then \ 1951 continue; \ 1952 fi ; \ 1953 newsum=$$(pkg query -F ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} '%X') ; \ 1954 if [ "$${oldsum}" == "$${newsum}" ]; then \ 1955 echo "==> Keeping old ${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION_FROM}.${PKG_EXT}" ; \ 1956 rm ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ; \ 1957 cp $${pkg} ${REPODIR}/${PKG_ABI}/${PKG_VERSION} ; \ 1958 else \ 1959 echo "==> New package $${newpkgname}" ; \ 1960 fi ; \ 1961 done 1962.endif 1963 ${_+_}@cd ${.CURDIR}; \ 1964 ${MAKE} -f Makefile.inc1 PKG_VERSION=${PKG_VERSION} sign-packages 1965 1966stage-packages-world: .PHONY 1967 @mkdir -p ${WSTAGEDIR} 1968 ${_+_}@cd ${.CURDIR}; \ 1969 ${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld 1970 1971stage-packages-kernel: .PHONY 1972 @mkdir -p ${KSTAGEDIR} 1973 ${_+_}@cd ${.CURDIR}; \ 1974 ${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel 1975 1976stage-packages: .PHONY stage-packages-world stage-packages-kernel 1977 1978_repodir: .PHONY 1979 @mkdir -p ${REPODIR} 1980 1981create-packages-world: _pkgbootstrap _repodir .PHONY 1982 ${_+_}@cd ${.CURDIR}; \ 1983 ${MAKE} -f Makefile.inc1 \ 1984 DESTDIR=${WSTAGEDIR} \ 1985 PKG_VERSION=${PKG_VERSION} create-world-packages 1986 1987create-packages-kernel: _pkgbootstrap _repodir .PHONY 1988 ${_+_}@cd ${.CURDIR}; \ 1989 ${MAKE} -f Makefile.inc1 \ 1990 DESTDIR=${KSTAGEDIR} \ 1991 PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \ 1992 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 1993 create-kernel-packages 1994 1995create-packages: .PHONY create-packages-world create-packages-kernel 1996 1997create-world-packages: _pkgbootstrap .PHONY 1998 @rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || : 1999 @cd ${WSTAGEDIR} ; \ 2000 env -i LC_COLLATE=C sort ${WSTAGEDIR}/${DISTDIR}/METALOG | \ 2001 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk 2002 @for plist in ${WSTAGEDIR}/*.plist; do \ 2003 plist=$${plist##*/} ; \ 2004 pkgname=$${plist%.plist} ; \ 2005 echo "_PKGS+= $${pkgname}" ; \ 2006 done > ${WSTAGEDIR}/packages.mk 2007 ${_+_}@cd ${.CURDIR}; \ 2008 ${MAKE} -f Makefile.inc1 create-world-packages-jobs \ 2009 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 2010 .MAKE.JOB.PREFIX= 2011 2012.if make(create-world-packages-jobs) 2013.include "${WSTAGEDIR}/packages.mk" 2014.endif 2015 2016create-world-packages-jobs: .PHONY 2017.for pkgname in ${_PKGS} 2018create-world-packages-jobs: create-world-package-${pkgname} 2019create-world-package-${pkgname}: .PHONY 2020 @sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \ 2021 -s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl 2022 @awk -F\" ' \ 2023 /^name/ { printf("===> Creating %s-", $$2); next } \ 2024 /^version/ { print $$2; next } \ 2025 ' ${WSTAGEDIR}/${pkgname}.ucl 2026 @if [ "${pkgname}" == "runtime" ]; then \ 2027 sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \ 2028 fi 2029 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2030 create -f ${PKG_FORMAT} -M ${WSTAGEDIR}/${pkgname}.ucl \ 2031 -p ${WSTAGEDIR}/${pkgname}.plist \ 2032 -r ${WSTAGEDIR} \ 2033 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2034.endfor 2035 2036_default_flavor= -default 2037.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta) 2038. if ${MK_DEBUG_FILES} != "no" 2039_debug=-dbg 2040. endif 2041create-kernel-packages: .PHONY 2042. for flavor in "" ${_debug} 2043create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},} 2044create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY 2045 @cd ${KSTAGEDIR}/${DISTDIR} ; \ 2046 env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.meta | \ 2047 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2048 -v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \ 2049 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2050 -e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \ 2051 -e "s/%KERNELDIR%/kernel/" \ 2052 -e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2053 -e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2054 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2055 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2056 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2057 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2058 ${SRCDIR}/release/packages/kernel.ucl \ 2059 > ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2060 awk -F\" ' \ 2061 /name/ { printf("===> Creating %s-", $$2); next } \ 2062 /version/ {print $$2; next } ' \ 2063 ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2064 ${PKG_CMD} -o ABI=${PKG_ABI} -o ALLOW_BASE_SHLIBS=yes \ 2065 create -f ${PKG_FORMAT} \ 2066 -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \ 2067 -p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \ 2068 -r ${KSTAGEDIR}/${DISTDIR} \ 2069 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2070. endfor 2071.endif 2072.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 2073. for _kernel in ${BUILDKERNELS:[2..-1]} 2074. if exists(${KSTAGEDIR}/kernel.${_kernel}.meta) 2075. if ${MK_DEBUG_FILES} != "no" 2076_debug=-dbg 2077. endif 2078. for flavor in "" ${_debug} 2079create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel} 2080create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY 2081 @cd ${KSTAGEDIR}/kernel.${_kernel} ; \ 2082 env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.${_kernel}.meta | \ 2083 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2084 -v kernel=yes -v _kernconf=${_kernel} ; \ 2085 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2086 -e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \ 2087 -e "s/%KERNELDIR%/kernel.${_kernel}/" \ 2088 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2089 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2090 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2091 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2092 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2093 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2094 ${SRCDIR}/release/packages/kernel.ucl \ 2095 > ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2096 awk -F\" ' \ 2097 /name/ { printf("===> Creating %s-", $$2); next } \ 2098 /version/ {print $$2; next } ' \ 2099 ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2100 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2101 create -f ${PKG_FORMAT} \ 2102 -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \ 2103 -p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \ 2104 -r ${KSTAGEDIR}/kernel.${_kernel} \ 2105 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2106. endfor 2107. endif 2108. endfor 2109.endif 2110 2111sign-packages: _pkgbootstrap .PHONY 2112 printf "version = 2;\n" > ${WSTAGEDIR}/meta 2113.if ${PKG_BIN_VERSION} < 11700 2114 printf "packing_format = \"${PKG_FORMAT}\";\n" >> ${WSTAGEDIR}/meta 2115.endif 2116 @[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \ 2117 unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \ 2118 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \ 2119 -m ${WSTAGEDIR}/meta \ 2120 -o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2121 ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2122 ${PKG_REPO_SIGNING_KEY} ; \ 2123 cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \ 2124 ln -s ${PKG_OUTPUT_DIR} latest 2125 2126# 2127# 2128# checkworld 2129# 2130# Run test suite on installed world. 2131# 2132checkworld: .PHONY 2133 @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \ 2134 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \ 2135 exit 1; \ 2136 fi 2137 ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile 2138 2139# 2140# 2141# doxygen 2142# 2143# Build the API documentation with doxygen 2144# 2145doxygen: .PHONY 2146 @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \ 2147 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 2148 exit 1; \ 2149 fi 2150 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all 2151 2152# 2153# ------------------------------------------------------------------------ 2154# 2155# From here onwards are utility targets used by the 'make world' and 2156# related targets. If your 'world' breaks, you may like to try to fix 2157# the problem and manually run the following targets to attempt to 2158# complete the build. Beware, this is *not* guaranteed to work, you 2159# need to have a pretty good grip on the current state of the system 2160# to attempt to manually finish it. If in doubt, 'make world' again. 2161# 2162 2163# 2164# legacy: Build compatibility shims for the next three targets. This is a 2165# minimal set of tools and shims necessary to compensate for older systems 2166# which don't have the APIs required by the targets built in bootstrap-tools, 2167# build-tools or cross-tools. 2168# 2169legacy: .PHONY 2170.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0 2171 @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \ 2172 false 2173.endif 2174 2175.for _tool in \ 2176 tools/build \ 2177 ${LOCAL_LEGACY_DIRS} 2178 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \ 2179 cd ${.CURDIR}/${_tool}; \ 2180 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2181 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \ 2182 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \ 2183 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \ 2184 DESTDIR=${WORLDTMP}/legacy install 2185.endfor 2186 2187# 2188# bootstrap-tools: Build tools needed for compatibility. These are binaries that 2189# are built to build other binaries in the system. However, the focus of these 2190# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 2191# libraries, augmented by -legacy, in addition to the libraries built during 2192# bootstrap-tools. 2193# 2194_bt= _bootstrap-tools 2195 2196# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't 2197# accidentally run tools that are incompatible but happen to be in $PATH. 2198# This is especially important when building on Linux/MacOS where many of the 2199# programs used during the build accept different flags or generate different 2200# output. On those platforms we only symlink the tools known to be compatible 2201# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others 2202# from the FreeBSD sources during the bootstrap-tools stage. 2203# We want to build without the user's $PATH starting in the bootstrap-tools 2204# phase so the tools used in that phase (ln, cp, etc) must have already been 2205# linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink 2206# variable in tools/build/Makefile and are linked during the legacy phase. 2207# Since they could be Linux or MacOS binaries, too we must only use flags that 2208# are portable across operating systems. 2209 2210# If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the 2211# current source tree. Otherwise we create a symlink to the version found in 2212# $PATH during the bootstrap-tools stage. 2213# When building on non-FreeBSD systems we can't assume that the host binaries 2214# accept compatible flags or produce compatible output. Therefore we force 2215# BOOTSTRAP_ALL_TOOLS and just build the FreeBSD version of the binary. 2216.if defined(CROSSBUILD_HOST) 2217BOOTSTRAP_ALL_TOOLS:= 1 2218.endif 2219.if defined(BOOTSTRAP_ALL_TOOLS) 2220# BOOTSTRAPPING will be set on the command line so we can't override it here. 2221# Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS} 2222BOOTSTRAPPING_OSRELDATE:= 0 2223.endif 2224 2225# libnv and libsbuf are requirements for config(8), which is an unconditional 2226# bootstrap-tool. 2227_config=usr.sbin/config lib/libnv lib/libsbuf 2228${_bt}-usr.sbin/config: ${_bt}-lib/libnv ${_bt}-lib/libsbuf 2229 2230.if ${MK_GAMES} != "no" 2231_strfile= usr.bin/fortune/strfile 2232.endif 2233 2234# vtfontcvt is used to build font files for loader and to generate 2235# C source for loader built in font (8x16.c). 2236_vtfontcvt= usr.bin/vtfontcvt 2237 2238# If we are not building the bootstrap because BOOTSTRAPPING is sufficient 2239# we symlink the host version to $WORLDTMP instead. By doing this we can also 2240# detect when a bootstrap tool is being used without the required MK_FOO. 2241# If you add a new bootstrap tool where we could also use the host version, 2242# please ensure that you also add a .else case where you add the tool to the 2243# _bootstrap_tools_links variable. 2244.if ${BOOTSTRAPPING} < 1000033 2245# Note: lex needs m4 to build but m4 also depends on lex (which needs m4 to 2246# generate any files). To fix this cyclic dependency we can build a bootstrap 2247# version of m4 (with pre-generated files) then use that to build the real m4. 2248# We can't simply use the host m4 since e.g. the macOS version does not accept 2249# the flags that are passed by lex. 2250# For lex we also use the pre-gerated files since we would otherwise need to 2251# build awk and sed first (which need lex to build) 2252# TODO: add a _bootstrap_lex and then build the real lex afterwards 2253_lex= usr.bin/lex 2254_m4= tools/build/bootstrap-m4 usr.bin/m4 2255${_bt}-tools/build/bootstrap-m4: ${_bt}-usr.bin/lex ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc 2256${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-usr.bin/lex ${_bt}-tools/build/bootstrap-m4 2257_bt_m4_depend=${_bt}-usr.bin/m4 2258_bt_lex_depend=${_bt}-usr.bin/lex ${_bt_m4_depend} 2259.else 2260_bootstrap_tools_links+=m4 lex 2261.endif 2262 2263# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. 2264# r296685 fix cross-endian objcopy 2265# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2. 2266# r334881 added libdwarf constants used by ctfconvert. 2267# r338478 fixed a crash in objcopy for mips64el objects 2268# r339083 libelf: correct mips64el test to use ELF header 2269# r348347 Add missing powerpc64 relocation support to libdwarf 2270.if ${BOOTSTRAPPING} < 1300030 2271_elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd 2272${_bt}-lib/libelf: ${_bt_m4_depend} 2273${_bt}-lib/libdwarf: ${_bt_m4_depend} 2274.endif 2275 2276# flua is required to regenerate syscall files. It first appeared during the 2277# 13.0-CURRENT cycle, thus needs to be built on -older releases and stable 2278# branches. 2279.if ${BOOTSTRAPPING} < 1300059 2280${_bt}-libexec/flua: ${_bt}-lib/liblua ${_bt}-lib/libucl 2281_flua= lib/liblua lib/libucl libexec/flua 2282.endif 2283 2284# r245440 mtree -N support added 2285# r313404 requires sha384.h for libnetbsd, added to libmd in r292782 2286.if ${BOOTSTRAPPING} < 1100093 2287_nmtree= lib/libmd \ 2288 lib/libnetbsd \ 2289 usr.sbin/nmtree 2290 2291${_bt}-lib/libnetbsd: ${_bt}-lib/libmd 2292${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 2293.else 2294_bootstrap_tools_links+=mtree 2295.endif 2296 2297# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l 2298.if ${BOOTSTRAPPING} < 1000027 2299_cat= bin/cat 2300.else 2301_bootstrap_tools_links+=cat 2302.endif 2303 2304# r277259 crunchide: Correct 64-bit section header offset 2305# r281674 crunchide: always include both 32- and 64-bit ELF support 2306.if ${BOOTSTRAPPING} < 1100078 2307_crunchide= usr.sbin/crunch/crunchide 2308.else 2309_bootstrap_tools_links+=crunchide 2310.endif 2311 2312# 1300115: Higher WARNS fixes 2313.if ${BOOTSTRAPPING} < 1202502 || \ 2314 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300131) 2315_crunchgen= usr.sbin/crunch/crunchgen 2316.else 2317_bootstrap_tools_links+=crunchgen 2318.endif 2319 2320# 1300102: VHDX support 2321.if ${BOOTSTRAPPING} < 1201520 || \ 2322 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300102) 2323_mkimg= usr.bin/mkimg 2324.else 2325_bootstrap_tools_links+=mkimg 2326.endif 2327 2328_yacc= usr.bin/yacc 2329 2330.if ${MK_BSNMP} != "no" 2331_gensnmptree= usr.sbin/bsnmpd/gensnmptree 2332.endif 2333 2334 2335# We need to build tblgen when we're building clang or lld, either as 2336# bootstrap tools, or as the part of the normal build. 2337# llvm-tblgen is also needed for various llvm binutils (e.g. objcopy). 2338.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2339 ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" || \ 2340 ${MK_LLDB} != "no" || ${MK_LLVM_BINUTILS} != "no" 2341_clang_tblgen= \ 2342 lib/clang/libllvmminimal \ 2343 usr.bin/clang/llvm-tblgen 2344.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2345 ${MK_LLDB} != "no" 2346_clang_tblgen+= usr.bin/clang/clang-tblgen 2347.endif 2348.if ${MK_LLDB} != "no" 2349_clang_tblgen+= usr.bin/clang/lldb-tblgen 2350.endif 2351${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal 2352${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal 2353${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal 2354.endif 2355 2356# C.UTF-8 is always built in share/ctypes and we need localedef for that. 2357_localedef= usr.bin/localedef 2358${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2359 2360.if ${MK_ICONV} != "no" 2361_mkesdb= usr.bin/mkesdb 2362_mkcsmapper= usr.bin/mkcsmapper 2363${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2364${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2365.endif 2366 2367.if ${MK_KERBEROS} != "no" 2368_kerberos5_bootstrap_tools= \ 2369 kerberos5/tools/make-roken \ 2370 kerberos5/lib/libroken \ 2371 kerberos5/lib/libvers \ 2372 kerberos5/tools/asn1_compile \ 2373 kerberos5/tools/slc \ 2374 usr.bin/compile_et 2375 2376.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 2377.for _tool in ${_kerberos5_bootstrap_tools} 2378${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2379.endfor 2380.endif 2381 2382${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd 2383 2384# The tools listed in _basic_bootstrap_tools will generally not be 2385# bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a 2386# Linux or MacOS host the host versions are incompatible so we need to build 2387# them from the source tree. Usually the link name will be the same as the subdir, 2388# but some directories such as grep or test install multiple binaries. In that 2389# case we use the _basic_bootstrap_tools_multilink variable which is a list of 2390# subdirectory and comma-separated list of files. 2391_basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep 2392_basic_bootstrap_tools_multilink+=bin/test test,[ 2393# bootstrap tools needed by buildworld: 2394_basic_bootstrap_tools+=usr.bin/cut bin/expr usr.bin/gencat usr.bin/join \ 2395 usr.bin/mktemp bin/realpath bin/rmdir usr.bin/sed usr.bin/sort \ 2396 usr.bin/truncate usr.bin/tsort 2397# Some build scripts use nawk instead of awk (this happens at least in 2398# cddl/contrib/opensolaris/lib/libdtrace/common/mknames.sh) so we need both awk 2399# and nawk in ${WORLDTMP}/legacy/bin. 2400_basic_bootstrap_tools_multilink+=usr.bin/awk awk,nawk 2401# file2c is required for building usr.sbin/config: 2402_basic_bootstrap_tools+=usr.bin/file2c 2403# uuencode/uudecode required for share/tabset 2404_basic_bootstrap_tools_multilink+=usr.bin/bintrans uuencode,uudecode 2405# xargs is required by mkioctls 2406_basic_bootstrap_tools+=usr.bin/xargs 2407# cap_mkdb is required for share/termcap: 2408_basic_bootstrap_tools+=usr.bin/cap_mkdb 2409# services_mkdb/pwd_mkdb are required for installworld: 2410_basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb 2411# ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?) 2412.if !defined(CROSSBUILD_HOST) 2413# ldd is only needed for updating the running system so we don't need to 2414# bootstrap ldd on non-FreeBSD systems 2415_basic_bootstrap_tools+=usr.bin/ldd 2416.endif 2417# sysctl/chflags are required for installkernel: 2418.if !defined(CROSSBUILD_HOST) 2419_basic_bootstrap_tools+=bin/chflags 2420# Note: sysctl does not bootstrap on FreeBSD < 13 anymore, but that doesn't 2421# matter since we don't need any of the new features for the build. 2422_bootstrap_tools_links+=sysctl 2423.else 2424# When building on non-FreeBSD, install a fake chflags instead since the 2425# version from the source tree cannot work. We also don't need sysctl since we 2426# are install with -DNO_ROOT. 2427_other_bootstrap_tools+=tools/build/cross-build/fake_chflags 2428.endif 2429# mkfifo is used by sys/conf/newvers.sh 2430_basic_bootstrap_tools+=usr.bin/mkfifo 2431# jot is needed for the mkimg tests 2432_basic_bootstrap_tools+=usr.bin/jot 2433 2434.if ${MK_BOOT} != "no" 2435# md5 is used by boot/beri (and possibly others) 2436_basic_bootstrap_tools+=sbin/md5 2437.endif 2438 2439.if ${MK_ZONEINFO} != "no" 2440_basic_bootstrap_tools+=usr.sbin/zic usr.sbin/tzsetup 2441.endif 2442 2443.if defined(BOOTSTRAP_ALL_TOOLS) 2444_other_bootstrap_tools+=${_basic_bootstrap_tools} 2445.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2446_other_bootstrap_tools+=${_subdir} 2447.endfor 2448${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2449${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2450# If we are bootstrapping file2c, we have to build it before config: 2451${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend} 2452# Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since 2453# the links to make/bmake make links will have already have been created in the 2454# `make legacy` step. Not adding a link to make is important on non-FreeBSD 2455# since "make" will usually point to GNU make there. 2456_other_bootstrap_tools+=usr.bin/bmake 2457 2458# Avoid dependency on host bz2 headers: 2459_other_bootstrap_tools+=lib/libbz2 2460${_bt}-usr.bin/grep: ${_bt}-lib/libbz2 2461 2462# libdwarf depends on libz 2463_other_bootstrap_tools+=lib/libz 2464${_bt}-lib/libdwarf: ${_bt}-lib/libz 2465 2466# libroken depends on libcrypt 2467_other_bootstrap_tools+=lib/libcrypt 2468${_bt}-lib/libroken: ${_bt}-lib/libcrypt 2469.else 2470# All tools in _basic_bootstrap_tools have the same name as the subdirectory 2471# so we can use :T to get the name of the symlinks that we need to create. 2472_bootstrap_tools_links+=${_basic_bootstrap_tools:T} 2473.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2474_bootstrap_tools_links+=${_links:S/,/ /g} 2475.endfor 2476.endif # defined(BOOTSTRAP_ALL_TOOLS) 2477 2478# Link the tools that we need for building but don't need to bootstrap because 2479# the host version is known to be compatible into ${WORLDTMP}/legacy 2480# We do this before building any of the bootstrap tools in case they depend on 2481# the presence of any of the links (e.g. as m4/lex/awk) 2482${_bt}-links: .PHONY 2483 2484.for _tool in ${_bootstrap_tools_links} 2485${_bt}-link-${_tool}: .PHONY 2486 @rm -f "${WORLDTMP}/legacy/bin/${_tool}"; \ 2487 source_path=`which ${_tool}`; \ 2488 if [ ! -e "$${source_path}" ] ; then \ 2489 echo "Cannot find host tool '${_tool}'"; false; \ 2490 fi; \ 2491 cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}" 2492${_bt}-links: ${_bt}-link-${_tool} 2493.endfor 2494 2495bootstrap-tools: ${_bt}-links .PHONY 2496 2497# Please document (add comment) why something is in 'bootstrap-tools'. 2498# Try to bound the building of the bootstrap-tool to just the 2499# FreeBSD versions that need the tool built at this stage of the build. 2500.for _tool in \ 2501 ${_clang_tblgen} \ 2502 ${_kerberos5_bootstrap_tools} \ 2503 ${_strfile} \ 2504 usr.bin/dtc \ 2505 ${_cat} \ 2506 ${_kbdcontrol} \ 2507 ${_elftoolchain_libs} \ 2508 lib/libopenbsd \ 2509 usr.bin/mandoc \ 2510 usr.bin/rpcgen \ 2511 ${_yacc} \ 2512 ${_m4} \ 2513 ${_lex} \ 2514 ${_other_bootstrap_tools} \ 2515 usr.bin/xinstall \ 2516 ${_gensnmptree} \ 2517 ${_config} \ 2518 ${_flua} \ 2519 ${_crunchide} \ 2520 ${_crunchgen} \ 2521 ${_mkimg} \ 2522 ${_nmtree} \ 2523 ${_vtfontcvt} \ 2524 ${_localedef} \ 2525 ${_mkcsmapper} \ 2526 ${_mkesdb} \ 2527 ${LOCAL_BSTOOL_DIRS} 2528${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE 2529 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2530 cd ${.CURDIR}/${_tool}; \ 2531 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2532 if [ "${_tool}" = "usr.bin/lex" ]; then \ 2533 ${MAKE} DIRPRFX=${_tool}/ bootstrap; \ 2534 fi; \ 2535 ${MAKE} DIRPRFX=${_tool}/ all; \ 2536 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install 2537 2538bootstrap-tools: ${_bt}-${_tool} 2539.endfor 2540.if target(${_bt}-lib/libmd) 2541# If we are bootstrapping libmd (e.g. when building on macOS/Linux) add the 2542# necessary dependencies: 2543${_bt}-usr.bin/sort: ${_bt}-lib/libmd 2544${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd 2545${_bt}-sbin/md5: ${_bt}-lib/libmd 2546.endif 2547 2548 2549# 2550# build-tools: Build special purpose build tools 2551# 2552.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no" 2553_share= share/syscons/scrnmaps 2554.endif 2555 2556.if ${MK_RESCUE} != "no" 2557# rescue includes programs that have build-tools targets 2558_rescue=rescue/rescue 2559.endif 2560 2561.if ${MK_TCSH} != "no" 2562_tcsh=bin/csh 2563.endif 2564.if ${MK_FILE} != "no" 2565_libmagic=lib/libmagic 2566.endif 2567 2568.if ${MK_PMC} != "no" 2569_jevents=lib/libpmc/pmu-events 2570.endif 2571 2572# kernel-toolchain skips _cleanobj, so handle cleaning up previous 2573# build-tools directories if needed. 2574.if ${MK_CLEAN} == "yes" && make(kernel-toolchain) 2575_bt_clean= ${CLEANDIR} 2576.endif 2577 2578.for _tool in \ 2579 ${_tcsh} \ 2580 bin/sh \ 2581 ${LOCAL_TOOL_DIRS} \ 2582 ${_jevents} \ 2583 lib/ncurses/tinfo \ 2584 ${_rescue} \ 2585 ${_share} \ 2586 usr.bin/awk \ 2587 ${_libmagic} \ 2588 usr.bin/vi/catalog 2589build-tools_${_tool}: .PHONY 2590 ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \ 2591 cd ${.CURDIR}/${_tool}; \ 2592 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \ 2593 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2594 ${MAKE} DIRPRFX=${_tool}/ build-tools 2595build-tools: build-tools_${_tool} 2596.endfor 2597 2598# 2599# kernel-tools: Build kernel-building tools 2600# 2601kernel-tools: .PHONY 2602 mkdir -p ${WORLDTMP}/usr 2603 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2604 -p ${WORLDTMP}/usr >/dev/null 2605 2606# 2607# cross-tools: All the tools needed to build the rest of the system after 2608# we get done with the earlier stages. It is the last set of tools needed 2609# to begin building the target binaries. 2610# 2611.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0 2612.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 2613_btxld= usr.sbin/btxld 2614.endif 2615.endif 2616 2617# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 2618# resulting from missing bug fixes or ELF Toolchain updates. 2619.if ${MK_CDDL} != "no" 2620_dtrace_tools= cddl/lib/libctf cddl/lib/libspl cddl/usr.bin/ctfconvert \ 2621 cddl/usr.bin/ctfmerge 2622.endif 2623 2624# If we're given an XAS, don't build binutils. 2625.if ${XAS:M/*} == "" 2626.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2627_elftctools= lib/libelftc \ 2628 lib/libpe \ 2629 usr.bin/elfctl \ 2630 usr.bin/elfdump \ 2631 usr.bin/objcopy \ 2632 usr.bin/nm \ 2633 usr.bin/size \ 2634 usr.bin/strings 2635# These are not required by the build, but can be useful for developers who 2636# cross-build on a FreeBSD 10 host: 2637_elftctools+= usr.bin/addr2line 2638.endif 2639.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2640# If cross-building with an external binutils we still need to build strip for 2641# the target (for at least crunchide). 2642_elftctools= lib/libelftc \ 2643 lib/libpe \ 2644 usr.bin/elfctl \ 2645 usr.bin/elfdump \ 2646 usr.bin/objcopy 2647.endif 2648 2649.if ${MK_CLANG_BOOTSTRAP} != "no" 2650_clang= usr.bin/clang 2651.endif 2652.if ${MK_LLD_BOOTSTRAP} != "no" 2653_lld= usr.bin/clang/lld 2654.endif 2655.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no" 2656_clang_libs= lib/clang 2657.endif 2658.if ${MK_USB} != "no" 2659_usb_tools= stand/usb/tools 2660.endif 2661 2662.if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS) 2663_ar=usr.bin/ar 2664.endif 2665 2666cross-tools: .MAKE .PHONY 2667.for _tool in \ 2668 ${LOCAL_XTOOL_DIRS} \ 2669 ${_ar} \ 2670 ${_clang_libs} \ 2671 ${_clang} \ 2672 ${_lld} \ 2673 ${_elftctools} \ 2674 ${_dtrace_tools} \ 2675 ${_btxld} \ 2676 ${_usb_tools} 2677 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2678 cd ${.CURDIR}/${_tool}; \ 2679 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2680 ${MAKE} DIRPRFX=${_tool}/ all; \ 2681 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install 2682.endfor 2683 2684# 2685# native-xtools is the current target for qemu-user cross builds of ports 2686# via poudriere and the imgact_binmisc kernel module. 2687# This target merely builds a toolchan/sysroot, then builds the tools it wants 2688# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain 2689# already built. It then installs the static tools to NXBDESTDIR for Poudriere 2690# to pickup. 2691# 2692NXBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/ 2693NXBOBJTOP= ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH} 2694NXTP?= /nxb-bin 2695.if ${NXTP:N/*} 2696.error NXTP variable should be an absolute path 2697.endif 2698NXBDESTDIR?= ${DESTDIR}${NXTP} 2699 2700# This is the list of tools to be built/installed as static and where 2701# appropriate to build for the given TARGET.TARGET_ARCH. 2702NXBDIRS+= \ 2703 bin/cat \ 2704 bin/chmod \ 2705 bin/cp \ 2706 ${_tcsh} \ 2707 bin/echo \ 2708 bin/expr \ 2709 bin/hostname \ 2710 bin/ln \ 2711 bin/ls \ 2712 bin/mkdir \ 2713 bin/mv \ 2714 bin/ps \ 2715 bin/realpath \ 2716 bin/rm \ 2717 bin/rmdir \ 2718 bin/sh \ 2719 bin/sleep \ 2720 sbin/md5 \ 2721 sbin/sysctl \ 2722 usr.bin/addr2line \ 2723 usr.bin/ar \ 2724 usr.bin/awk \ 2725 usr.bin/basename \ 2726 usr.bin/bmake \ 2727 usr.bin/bzip2 \ 2728 usr.bin/cmp \ 2729 usr.bin/diff \ 2730 usr.bin/dirname \ 2731 usr.bin/objcopy \ 2732 usr.bin/env \ 2733 usr.bin/fetch \ 2734 usr.bin/find \ 2735 usr.bin/grep \ 2736 usr.bin/gzip \ 2737 usr.bin/head \ 2738 usr.bin/id \ 2739 usr.bin/lex \ 2740 usr.bin/limits \ 2741 usr.bin/mandoc \ 2742 usr.bin/mktemp \ 2743 usr.bin/mt \ 2744 usr.bin/nm \ 2745 usr.bin/patch \ 2746 usr.bin/readelf \ 2747 usr.bin/sed \ 2748 usr.bin/size \ 2749 usr.bin/sort \ 2750 usr.bin/strings \ 2751 usr.bin/tar \ 2752 usr.bin/touch \ 2753 usr.bin/tr \ 2754 usr.bin/true \ 2755 usr.bin/uniq \ 2756 usr.bin/unzip \ 2757 usr.bin/wc \ 2758 usr.bin/xargs \ 2759 usr.bin/xinstall \ 2760 usr.bin/xz \ 2761 usr.bin/yacc \ 2762 usr.sbin/chown 2763 2764SUBDIR_DEPEND_usr.bin/clang= lib/clang 2765.if ${MK_CLANG} != "no" 2766NXBDIRS+= lib/clang 2767NXBDIRS+= usr.bin/clang 2768.endif 2769# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs 2770# to be evaluated after NXBDIRS is set. 2771.if make(install) && !empty(SUBDIR_OVERRIDE) 2772SUBDIR= ${SUBDIR_OVERRIDE} 2773.endif 2774 2775NXBMAKEARGS+= \ 2776 OBJTOP=${NXBOBJTOP:Q} \ 2777 OBJROOT=${NXBOBJROOT:Q} \ 2778 -DNO_SHARED \ 2779 -DNO_CPU_CFLAGS \ 2780 -DNO_PIC \ 2781 MK_CASPER=no \ 2782 MK_CLANG_EXTRAS=no \ 2783 MK_CLANG_FORMAT=no \ 2784 MK_CLANG_FULL=no \ 2785 MK_CTF=no \ 2786 MK_DEBUG_FILES=no \ 2787 MK_HTML=no \ 2788 MK_LLDB=no \ 2789 MK_MAN=no \ 2790 MK_MAN_UTILS=yes \ 2791 MK_OFED=no \ 2792 MK_OPENSSH=no \ 2793 MK_PROFILE=no \ 2794 MK_RETPOLINE=no \ 2795 MK_SENDMAIL=no \ 2796 MK_SSP=no \ 2797 MK_TESTS=no \ 2798 MK_WERROR=no \ 2799 MK_ZFS=no 2800 2801NXBMAKEENV+= \ 2802 MAKEOBJDIRPREFIX= 2803 2804# This should match all of the knobs in lib/Makefile that it takes to avoid 2805# descending into lib/clang! 2806NXBTNOTOOLS= MK_CLANG=no MK_LLD=no MK_LLDB=no MK_LLVM_BINUTILS=no 2807 2808.if make(native-xtools*) && \ 2809 (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH)) 2810.error Missing NXB_TARGET / NXB_TARGET_ARCH 2811.endif 2812# For 'toolchain' we want to produce native binaries that themselves generate 2813# native binaries. 2814NXBTMAKE= ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \ 2815 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH} 2816# For 'everything' we want to produce native binaries (hence -target to 2817# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries. 2818# TARGET/TARGET_ARCH are still passed along from user. 2819# 2820# Use the toolchain we create as an external toolchain. 2821.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*} 2822NXBMAKE+= XCC="${XCC}" \ 2823 XCXX="${XCXX}" \ 2824 XCPP="${XCPP}" 2825.else 2826NXBMAKE+= XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \ 2827 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \ 2828 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp" 2829.endif 2830NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \ 2831 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \ 2832 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \ 2833 TARGET_TRIPLE=${MACHINE_TRIPLE:Q} 2834# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to 2835# invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS. 2836NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}' 2837# Need to avoid the -isystem logic when using clang as an external toolchain 2838# even if the TARGET being built for wants GCC. 2839NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}' 2840native-xtools: .PHONY 2841 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj 2842 # Build the bootstrap/host/cross tools that produce native binaries 2843 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain 2844 # Populate includes/libraries sysroot that produce native binaries. 2845 # This is split out from 'toolchain' above mostly so that target LLVM 2846 # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without 2847 # polluting the cross-compiler build. The LLVM libs are skipped 2848 # here to avoid the problem but are kept in 'toolchain' so that 2849 # needed build tools are built. 2850 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes ${NXBTNOTOOLS} 2851 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries ${NXBTNOTOOLS} 2852.if !defined(NO_OBJWALK) 2853 ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj 2854.endif 2855 ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything 2856 @echo ">> native-xtools done. Use 'make native-xtools-install' to install to a given DESTDIR" 2857 2858native-xtools-install: .PHONY 2859 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 2860 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2861 -p ${NXBDESTDIR}/usr >/dev/null 2862 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2863 -p ${NXBDESTDIR}/usr/include >/dev/null 2864.if ${TARGET_ARCH} == "amd64" 2865 mkdir -p ${NXBDESTDIR}/usr/include/i386 2866.endif 2867 ${_+_}cd ${.CURDIR}; ${NXBMAKE} \ 2868 DESTDIR=${NXBDESTDIR} \ 2869 -DNO_ROOT \ 2870 install 2871 2872# 2873# hierarchy - ensure that all the needed directories are present 2874# 2875hierarchy hier: .MAKE .PHONY 2876 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs 2877 2878# 2879# libraries - build all libraries, and install them under ${DESTDIR}. 2880# 2881# The list of libraries with dependents (${_prebuild_libs}) and their 2882# interdependencies (__L) are built automatically by the 2883# ${.CURDIR}/tools/make_libdeps.sh script. 2884# 2885libraries: .MAKE .PHONY 2886 ${_+_}cd ${.CURDIR}; \ 2887 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 2888 ${MAKE} -f Makefile.inc1 _startup_libs; \ 2889 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 2890 ${MAKE} -f Makefile.inc1 _generic_libs 2891 2892# 2893# static libgcc.a prerequisite for shared libc 2894# 2895_prereq_libs= lib/libcompiler_rt 2896.if ${MK_SSP} != "no" 2897_prereq_libs+= lib/libssp_nonshared 2898.endif 2899.if ${MK_ASAN} != "no" 2900_prereq_libs+= lib/libclang_rt/asan 2901_prereq_libs+= lib/libclang_rt/asan-preinit 2902_prereq_libs+= lib/libclang_rt/asan_cxx 2903.endif 2904.if ${MK_UBSAN} != "no" 2905_prereq_libs+= lib/libclang_rt/ubsan_minimal 2906_prereq_libs+= lib/libclang_rt/ubsan_standalone 2907_prereq_libs+= lib/libclang_rt/ubsan_standalone_cxx 2908.endif 2909 2910# These dependencies are not automatically generated: 2911# 2912# lib/csu and lib/libc must be built before 2913# all shared libraries for ELF. 2914# 2915_startup_libs= lib/csu 2916_startup_libs+= lib/libc 2917_startup_libs+= lib/libc_nonshared 2918.if ${MK_CXX} != "no" 2919_startup_libs+= lib/libcxxrt 2920.endif 2921 2922_prereq_libs+= lib/libgcc_eh lib/libgcc_s 2923_startup_libs+= lib/libgcc_eh lib/libgcc_s 2924 2925lib/libgcc_s__L: lib/libc__L 2926lib/libgcc_s__L: lib/libc_nonshared__L 2927.if ${MK_CXX} != "no" 2928lib/libcxxrt__L: lib/libgcc_s__L 2929.endif 2930 2931_prebuild_libs= ${_kerberos5_lib_libasn1} \ 2932 ${_kerberos5_lib_libhdb} \ 2933 ${_kerberos5_lib_libheimbase} \ 2934 ${_kerberos5_lib_libheimntlm} \ 2935 ${_libsqlite3} \ 2936 ${_kerberos5_lib_libheimipcc} \ 2937 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 2938 ${_kerberos5_lib_libroken} \ 2939 ${_kerberos5_lib_libwind} \ 2940 lib/libbz2 ${_libcom_err} lib/libcrypt \ 2941 lib/libelf lib/libexpat \ 2942 lib/libfigpar \ 2943 ${_lib_libgssapi} \ 2944 lib/libjail \ 2945 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 2946 lib/libzstd \ 2947 ${_lib_casper} \ 2948 lib/ncurses/tinfo \ 2949 lib/ncurses/ncurses \ 2950 lib/ncurses/form \ 2951 lib/libopie lib/libpam/libpam lib/libthr \ 2952 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 2953 lib/libgeom \ 2954 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 2955 ${_cddl_lib_libuutil} \ 2956 ${_cddl_lib_libavl} \ 2957 ${_cddl_lib_libicp} \ 2958 ${_cddl_lib_libicp_rescue} \ 2959 ${_cddl_lib_libspl} \ 2960 ${_cddl_lib_libtpool} \ 2961 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \ 2962 ${_cddl_lib_libzutil} \ 2963 ${_cddl_lib_libctf} ${_cddl_lib_libzfsbootenv} \ 2964 lib/libufs \ 2965 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 2966 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \ 2967 ${_lib_libldns} ${_secure_lib_libssh} 2968 2969.if ${MK_DIALOG} != "no" 2970_prebuild_libs+= gnu/lib/libdialog 2971gnu/lib/libdialog__L: lib/msun__L lib/ncurses/tinfo__L lib/ncurses/ncurses__L 2972.endif 2973 2974.if ${MK_GOOGLETEST} != "no" 2975_prebuild_libs+= lib/libregex 2976.endif 2977 2978.if ${MK_CXX} != "no" 2979_prebuild_libs+= lib/libc++ 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/libopie__L lib/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} lib/libelf__L lib/librtld_db__L lib/libutil__L 3147.if ${MK_CXX} != "no" 3148lib/libproc__L: lib/libcxxrt__L 3149.endif 3150 3151.for _lib in ${_prereq_libs} 3152${_lib}__PL: .PHONY .MAKE 3153.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3154 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3155 cd ${.CURDIR}/${_lib}; \ 3156 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3157 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3158 DIRPRFX=${_lib}/ all; \ 3159 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3160 DIRPRFX=${_lib}/ install 3161.endif 3162.endfor 3163 3164.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs} 3165${_lib}__L: .PHONY .MAKE 3166.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3167 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3168 cd ${.CURDIR}/${_lib}; \ 3169 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3170 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \ 3171 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 3172.endif 3173.endfor 3174 3175_prereq_libs: ${_prereq_libs:S/$/__PL/} 3176_startup_libs: ${_startup_libs:S/$/__L/} 3177_prebuild_libs: ${_prebuild_libs:S/$/__L/} 3178_generic_libs: ${_generic_libs:S/$/__L/} 3179 3180# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from 3181# 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely 3182# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE 3183# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in 3184# parallel. This is safe for the world stage of buildworld though since it has 3185# already built libraries in a proper order and installed includes into 3186# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to 3187# avoid trashing a system if it crashes mid-install. 3188.if !make(all) || defined(_PARALLEL_SUBDIR_OK) 3189SUBDIR_PARALLEL= 3190.endif 3191 3192.include <bsd.subdir.mk> 3193 3194.if make(check-old) || make(check-old-dirs) || \ 3195 make(check-old-files) || make(check-old-libs) || \ 3196 make(delete-old) || make(delete-old-dirs) || \ 3197 make(delete-old-files) || make(delete-old-libs) || \ 3198 make(list-old-dirs) || make(list-old-files) || make(list-old-libs) 3199 3200# 3201# check for / delete old files section 3202# 3203 3204.include "ObsoleteFiles.inc" 3205 3206OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 3207else you can not start such an application. Consult UPDATING for more \ 3208information regarding how to cope with the removal/revision bump of a \ 3209specific library." 3210 3211.if !defined(BATCH_DELETE_OLD_FILES) 3212RM_I=-i 3213.else 3214RM_I=-v 3215.endif 3216 3217list-old-files: .PHONY 3218 @cd ${.CURDIR}; \ 3219 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3220 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" \ 3221 -V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib32," \ 3222 -V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib32," | \ 3223 sed -E 's/[[:space:]]+/\n/g' | sort 3224 3225delete-old-files: .PHONY 3226 @echo ">>> Removing old files (only deletes safe to delete libs)" 3227# Ask for every old file if the user really wants to remove it. 3228# It's annoying, but better safe than sorry. 3229# NB: We cannot pass the list of OLD_FILES as a parameter because the 3230# argument list will get too long. Using .for/.endfor make "loops" will make 3231# the Makefile parser segfault. 3232 @exec 3<&0; \ 3233 cd ${.CURDIR}; \ 3234 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3235 while read file; do \ 3236 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3237 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3238 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3239 fi; \ 3240 for ext in debug symbols; do \ 3241 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3242 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3243 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3244 <&3; \ 3245 fi; \ 3246 done; \ 3247 done 3248# Remove catpages without corresponding manpages. 3249 @exec 3<&0; \ 3250 find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \ 3251 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3252 while read catpage; do \ 3253 read manpage; \ 3254 if [ ! -e "$${manpage}" ]; then \ 3255 rm ${RM_I} $${catpage} <&3; \ 3256 fi; \ 3257 done 3258 @echo ">>> Old files removed" 3259 3260check-old-files: .PHONY 3261 @echo ">>> Checking for old files" 3262 @cd ${.CURDIR}; \ 3263 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3264 while read file; do \ 3265 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3266 echo "${DESTDIR}/$${file}"; \ 3267 fi; \ 3268 for ext in debug symbols; do \ 3269 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3270 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3271 fi; \ 3272 done; \ 3273 done 3274# Check for catpages without corresponding manpages. 3275 @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 3276 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3277 while read catpage; do \ 3278 read manpage; \ 3279 if [ ! -e "$${manpage}" ]; then \ 3280 echo $${catpage}; \ 3281 fi; \ 3282 done | sort 3283 3284list-old-libs: .PHONY 3285 @cd ${.CURDIR}; \ 3286 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3287 -V OLD_LIBS -V MOVED_LIBS -V "OLD_LIBS:Mlib/*:S,^lib,usr/lib32," \ 3288 -V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib32," \ 3289 -V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib32," | \ 3290 sed -E 's/[[:space:]]+/\n/g' | sort 3291 3292delete-old-libs: .PHONY 3293 @echo ">>> Removing old libraries" 3294 @echo "${OLD_LIBS_MESSAGE}" | fmt 3295 @exec 3<&0; \ 3296 cd ${.CURDIR}; \ 3297 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3298 while read file; do \ 3299 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3300 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3301 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3302 fi; \ 3303 for ext in debug symbols; do \ 3304 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3305 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3306 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3307 <&3; \ 3308 fi; \ 3309 done; \ 3310 done 3311 @echo ">>> Old libraries removed" 3312 3313check-old-libs: .PHONY 3314 @echo ">>> Checking for old libraries" 3315 @cd ${.CURDIR}; \ 3316 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3317 while read file; do \ 3318 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3319 echo "${DESTDIR}/$${file}"; \ 3320 fi; \ 3321 for ext in debug symbols; do \ 3322 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3323 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3324 fi; \ 3325 done; \ 3326 done 3327 3328list-old-dirs: .PHONY 3329 @cd ${.CURDIR}; \ 3330 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3331 -V OLD_DIRS | sed -E 's/[[:space:]]+/\n/g' | sort -r 3332 3333delete-old-dirs: .PHONY 3334 @echo ">>> Removing old directories" 3335 @cd ${.CURDIR}; \ 3336 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3337 while read dir; do \ 3338 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3339 rmdir -v "${DESTDIR}/$${dir}" || true; \ 3340 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3341 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3342 fi; \ 3343 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3344 rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \ 3345 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3346 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3347 fi; \ 3348 done 3349 @echo ">>> Old directories removed" 3350 3351check-old-dirs: .PHONY 3352 @echo ">>> Checking for old directories" 3353 @cd ${.CURDIR}; \ 3354 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3355 while read dir; do \ 3356 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3357 echo "${DESTDIR}/$${dir}"; \ 3358 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3359 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3360 fi; \ 3361 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3362 echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \ 3363 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3364 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3365 fi; \ 3366 done 3367 3368delete-old: delete-old-files delete-old-dirs .PHONY 3369 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3370 3371check-old: check-old-files check-old-libs check-old-dirs .PHONY 3372 @echo "To remove old files and directories run '${MAKE_CMD} delete-old'." 3373 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3374 3375.endif 3376 3377# 3378# showconfig - show build configuration. 3379# 3380showconfig: .PHONY 3381 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \ 3382 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u 3383 3384.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 3385DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 3386 3387.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 3388.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF}) 3389FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 3390 '${KERNCONFDIR}/${KERNCONF}' ; echo 3391.endif 3392.endif 3393 3394.endif 3395 3396.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 3397DTBOUTPUTPATH= ${.CURDIR} 3398.endif 3399 3400# 3401# Build 'standalone' Device Tree Blob 3402# 3403builddtb: .PHONY 3404 @PATH=${TMPPATH} MACHINE=${TARGET} \ 3405 sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 3406 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 3407 3408############### 3409 3410# cleanworld 3411# In the following, the first 'rm' in a series will usually remove all 3412# files and directories. If it does not, then there are probably some 3413# files with file flags set, so this unsets them and tries the 'rm' a 3414# second time. There are situations where this target will be cleaning 3415# some directories via more than one method, but that duplication is 3416# needed to correctly handle all the possible situations. Removing all 3417# files without file flags set in the first 'rm' instance saves time, 3418# because 'chflags' will need to operate on fewer files afterwards. 3419# 3420# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be 3421# created by bsd.obj.mk, except that we don't want to .include that file 3422# in this makefile. We don't do a cleandir walk if MK_AUTO_OBJ is yes 3423# since it is not possible for files to land in the wrong place. 3424# 3425.if make(cleanworld) 3426BW_CANONICALOBJDIR:=${OBJTOP}/ 3427.elif make(cleankernel) 3428BW_CANONICALOBJDIR:=${KRNLOBJDIR}/${KERNCONF}/ 3429.elif make(cleanuniverse) 3430BW_CANONICALOBJDIR:=${OBJROOT} 3431.if ${MK_UNIFIED_OBJDIR} == "no" 3432.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled. 3433.endif 3434.endif 3435cleanworld cleanuniverse cleankernel: .PHONY 3436.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \ 3437 ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA} 3438 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3439 -chflags -R 0 ${BW_CANONICALOBJDIR} 3440 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3441.endif 3442.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \ 3443 (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA}) 3444.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} 3445 # To be safe in this case, fall back to a 'make cleandir' 3446 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir 3447.endif 3448.endif 3449 3450.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 3451XDEV_CPUTYPE?=${CPUTYPE} 3452.else 3453XDEV_CPUTYPE?=${TARGET_CPUTYPE} 3454.endif 3455 3456NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 3457 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 3458 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \ 3459 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 3460 CPUTYPE=${XDEV_CPUTYPE} 3461 3462XDDIR=${TARGET_ARCH}-freebsd 3463XDTP?=/usr/${XDDIR} 3464.if ${XDTP:N/*} 3465.error XDTP variable should be an absolute path 3466.endif 3467 3468CDBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/ 3469CDBOBJTOP= ${CDBOBJROOT}${XDDIR} 3470CDBENV= \ 3471 INSTALL="sh ${.CURDIR}/tools/install.sh" 3472CDENV= ${CDBENV} \ 3473 TOOLS_PREFIX=${XDTP} 3474CDMAKEARGS= \ 3475 OBJTOP=${CDBOBJTOP:Q} \ 3476 OBJROOT=${CDBOBJROOT:Q} 3477CD2MAKEARGS= ${CDMAKEARGS} 3478 3479.if ${WANT_COMPILER_TYPE} == gcc || \ 3480 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 3481# GCC requires -isystem and -L when using a cross-compiler. --sysroot 3482# won't set header path and -L is used to ensure the base library path 3483# is added before the port PREFIX library path. 3484CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib 3485# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler 3486# combined with --sysroot. 3487CD2CFLAGS+= -B${XDDESTDIR}/usr/lib 3488# Force using libc++ for external GCC. 3489.if defined(X_COMPILER_TYPE) && \ 3490 ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800 3491CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \ 3492 -nostdinc++ 3493.endif 3494.endif 3495CD2CFLAGS+= --sysroot=${XDDESTDIR}/ 3496CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \ 3497 CPP="${CPP} ${CD2CFLAGS}" \ 3498 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 3499 3500CDTMP= ${OBJTOP}/${XDDIR}/tmp 3501CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN} 3502CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \ 3503 ${MAKE} ${CD2MAKEARGS} ${NOFUN} 3504.if ${MK_META_MODE} != "no" 3505# Don't rebuild build-tools targets during normal build. 3506CD2MAKE+= BUILD_TOOLS_META=.NOMETA 3507.endif 3508XDDESTDIR=${DESTDIR}${XDTP} 3509 3510.ORDER: xdev-build xdev-install xdev-links 3511xdev: xdev-build xdev-install .PHONY 3512 3513.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 3514xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY 3515 3516_xb-worldtmp: .PHONY 3517 mkdir -p ${CDTMP}/usr 3518 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3519 -p ${CDTMP}/usr >/dev/null 3520 3521_xb-bootstrap-tools: .PHONY 3522.for _tool in \ 3523 ${_clang_tblgen} \ 3524 ${_yacc} 3525 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 3526 cd ${.CURDIR}/${_tool}; \ 3527 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3528 ${CDMAKE} DIRPRFX=${_tool}/ all; \ 3529 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 3530.endfor 3531 3532_xb-build-tools: .PHONY 3533 ${_+_}@cd ${.CURDIR}; \ 3534 ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools 3535 3536XDEVDIRS= \ 3537 ${_clang_libs} \ 3538 ${_lld} \ 3539 ${_elftctools} \ 3540 usr.bin/ar \ 3541 ${_clang} 3542 3543_xb-cross-tools: .PHONY 3544.for _tool in ${XDEVDIRS} 3545 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \ 3546 cd ${.CURDIR}/${_tool}; \ 3547 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3548 ${CDMAKE} DIRPRFX=${_tool}/ all 3549.endfor 3550 3551_xi-mtree: .PHONY 3552 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 3553 mkdir -p ${XDDESTDIR} 3554 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 3555 -p ${XDDESTDIR} >/dev/null 3556 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3557 -p ${XDDESTDIR}/usr >/dev/null 3558 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 3559 -p ${XDDESTDIR}/usr/include >/dev/null 3560.if ${TARGET_ARCH} == "amd64" 3561 mkdir -p ${XDDESTDIR}/usr/include/i386 3562.endif 3563.if defined(_LIBCOMPAT) 3564 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 3565 -p ${XDDESTDIR}/usr >/dev/null 3566.endif 3567.if ${MK_TESTS} != "no" 3568 mkdir -p ${XDDESTDIR}${TESTSBASE} 3569 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 3570 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 3571.endif 3572 3573.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 3574xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY 3575 3576_xi-cross-tools: .PHONY 3577 @echo "_xi-cross-tools" 3578.for _tool in ${XDEVDIRS} 3579 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 3580 cd ${.CURDIR}/${_tool}; \ 3581 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 3582.endfor 3583 3584_xi-includes: .PHONY 3585.if !defined(NO_OBJWALK) 3586 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \ 3587 DESTDIR=${XDDESTDIR} 3588.endif 3589 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \ 3590 DESTDIR=${XDDESTDIR} 3591 3592_xi-libraries: .PHONY 3593 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 3594 DESTDIR=${XDDESTDIR} 3595 3596xdev-links: .PHONY 3597 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 3598 mkdir -p ../../../../usr/bin; \ 3599 for i in *; do \ 3600 ln -sf ../../${XDTP}/usr/bin/$$i \ 3601 ../../../../usr/bin/${XDDIR}-$$i; \ 3602 ln -sf ../../${XDTP}/usr/bin/$$i \ 3603 ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \ 3604 done 3605