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