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