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