xref: /freebsd/tools/build/Makefile (revision c5e54e56e68aa50beb7d2a7b8ae6611490a7ba9e)
130aaff11SWarner Losh# $FreeBSD$
230aaff11SWarner Losh
330aaff11SWarner Losh.PATH: ${.CURDIR}/../../include
430aaff11SWarner Losh
51c62f923SWarner LoshLIB=		egacy
6c2774610SDavid E. O'BrienSRC=
7162ae9c8SAlex RichardsonINCSGROUPS=	INCS SYSINCS CASPERINC UFSINCS FFSINCS MSDOSFSINCS DISKINCS
87ec1ec4fSAlex RichardsonINCSGROUPS+=	MACHINESYSINCS RPCINCS
930aaff11SWarner LoshINCS=
1030aaff11SWarner Losh
11d80f1dd1SJilles TjoelkerSYSINCSDIR=	${INCLUDEDIR}/sys
12d5f4dd1bSMariusz ZaborskiCASPERINCDIR=	${INCLUDEDIR}/casper
13162ae9c8SAlex Richardson# Also add ufs/ffs/msdosfs/disk headers to allow building makefs as a bootstrap tool
14162ae9c8SAlex RichardsonUFSINCSDIR=	${INCLUDEDIR}/ufs/ufs
15162ae9c8SAlex RichardsonFFSINCSDIR=	${INCLUDEDIR}/ufs/ffs
16162ae9c8SAlex RichardsonMSDOSFSINCSDIR=	${INCLUDEDIR}/fs/msdosfs
17162ae9c8SAlex RichardsonDISKINCSDIR=	${INCLUDEDIR}/sys/disk
187ec1ec4fSAlex RichardsonMACHINESYSINCSDIR=	${INCLUDEDIR}/machine
197ec1ec4fSAlex RichardsonRPCINCSDIR=	${INCLUDEDIR}/rpc
20d80f1dd1SJilles Tjoelker
2130aaff11SWarner LoshBOOTSTRAPPING?=	0
2230aaff11SWarner Losh
237ec1ec4fSAlex Richardson
247ec1ec4fSAlex Richardson.if ${.MAKE.OS} == "Darwin"
257ec1ec4fSAlex Richardson_XCODE_ROOT!=xcode-select -p
267ec1ec4fSAlex Richardson# since macOS 10.14 C headers are no longer installed in /usr but only
277ec1ec4fSAlex Richardson# provided via the SDK
287ec1ec4fSAlex Richardson.if ${_XCODE_ROOT} == "/Library/Developer/CommandLineTools"
297ec1ec4fSAlex Richardson# Only command line tools installed -> host headers are in the SDKs directory
307ec1ec4fSAlex Richardson_MACOS_SDK_DIR=${_XCODE_ROOT}/SDKs/MacOSX.sdk/
317ec1ec4fSAlex Richardson.else
327ec1ec4fSAlex Richardson# Full XCode installed -> host headers are below Platforms/MacOSX.platform
337ec1ec4fSAlex Richardson_MACOS_SDK_DIR=${_XCODE_ROOT}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
347ec1ec4fSAlex Richardson.endif
357ec1ec4fSAlex RichardsonHOST_INCLUDE_ROOT=${_MACOS_SDK_DIR}/usr/include
367ec1ec4fSAlex Richardson.if !exists(${HOST_INCLUDE_ROOT}/stdio.h)
376f6fbfa3SEd Maste.error You must install the macOS SDK (try xcode-select --install)
387ec1ec4fSAlex Richardson.endif
397ec1ec4fSAlex Richardson.else
407ec1ec4fSAlex RichardsonHOST_INCLUDE_ROOT=/usr/include
417ec1ec4fSAlex Richardson.endif
427ec1ec4fSAlex Richardson
437ec1ec4fSAlex Richardson# Allow building libc-internal files (also on non-FreeBSD hosts)
447ec1ec4fSAlex RichardsonCFLAGS+=	-I${.CURDIR}/libc-bootstrap
457ec1ec4fSAlex Richardson# Symbol versioning is not required for -legacy (and macOS bootstrap)
467ec1ec4fSAlex RichardsonMK_SYMVER=	no
477ec1ec4fSAlex Richardson
487ec1ec4fSAlex Richardson_WITH_PWCACHEDB!= grep -c pwcache_groupdb ${HOST_INCLUDE_ROOT}/grp.h || true
4979626055SBrooks Davis.if ${_WITH_PWCACHEDB} == 0
5079626055SBrooks Davis.PATH: ${.CURDIR}/../../contrib/libc-pwcache
517ec1ec4fSAlex RichardsonCFLAGS.pwcache.c+=	-I${.CURDIR}/../../contrib/libc-pwcache
5279626055SBrooks DavisSRCS+=		pwcache.c
5379626055SBrooks Davis.endif
5479626055SBrooks Davis
557ec1ec4fSAlex Richardson_WITH_STRSVIS!=	grep -c strsvis ${HOST_INCLUDE_ROOT}/vis.h 2>/dev/null || true
5679626055SBrooks Davis.if ${_WITH_STRSVIS} == 0
5779626055SBrooks Davis.PATH: ${.CURDIR}/../../contrib/libc-vis
587ec1ec4fSAlex RichardsonINCS+=		vis.h
597ec1ec4fSAlex RichardsonSRCS+=		vis.c unvis.c
60a5252831SAlex RichardsonCFLAGS.vis.c+=	-I${.CURDIR}/../../contrib/libc-vis -DHAVE_VIS=0 -DHAVE_SVIS=0
61a5252831SAlex RichardsonCFLAGS.unvis.c+=	-I${.CURDIR}/../../contrib/libc-vis -DHAVE_VIS=0 -DHAVE_SVIS=0
6279626055SBrooks Davis.endif
6379626055SBrooks Davis
647ec1ec4fSAlex Richardson_WITH_REALLOCARRAY!= grep -c reallocarray ${HOST_INCLUDE_ROOT}/stdlib.h || true
658e7e3163SDimitry Andric.if ${_WITH_REALLOCARRAY} == 0
668e7e3163SDimitry Andric.PATH: ${.CURDIR}/../../lib/libc/stdlib
678e7e3163SDimitry AndricINCS+=		stdlib.h
688e7e3163SDimitry AndricSRCS+=		reallocarray.c
698e7e3163SDimitry Andric.endif
708e7e3163SDimitry Andric
71*c5e54e56SEd Maste.if exists(${HOST_INCLUDE_ROOT}/sys/stat.h)
727ec1ec4fSAlex Richardson_WITH_UTIMENS!= grep -c utimensat ${HOST_INCLUDE_ROOT}/sys/stat.h || true
73*c5e54e56SEd Maste.else
74*c5e54e56SEd Maste_WITH_UTIMENS= 0
75*c5e54e56SEd Maste.endif
76d80f1dd1SJilles Tjoelker.if ${_WITH_UTIMENS} == 0
77d80f1dd1SJilles TjoelkerSYSINCS+=	stat.h
78d80f1dd1SJilles TjoelkerSRCS+=		futimens.c utimensat.c
79d80f1dd1SJilles Tjoelker.endif
80d80f1dd1SJilles Tjoelker
817ec1ec4fSAlex Richardson_WITH_EXPLICIT_BZERO!= grep -c explicit_bzero ${HOST_INCLUDE_ROOT}/strings.h || true
828d14ced6SAlex Richardson.if ${_WITH_EXPLICIT_BZERO} == 0
837ec1ec4fSAlex Richardson# .PATH: ${SRCTOP}/sys/libkern
847ec1ec4fSAlex Richardson# Adding sys/libkern to .PATH breaks building the cross-build compat library
857ec1ec4fSAlex Richardson# since that attempts to build strlcpy.c from libc and adding libkern here will
867ec1ec4fSAlex Richardson# cause it to pick the file from libkern instead (which won't compile).
877ec1ec4fSAlex Richardson# Avoid modifying .PATH by creating a copy in the build directory instead.
887ec1ec4fSAlex Richardsonexplicit_bzero.c: ${SRCTOP}/sys/libkern/explicit_bzero.c
897ec1ec4fSAlex Richardson	cp ${.ALLSRC} ${.TARGET}
907ec1ec4fSAlex RichardsonCLEANFILES+=	explicit_bzero.c
918d14ced6SAlex RichardsonINCS+=		strings.h
928d14ced6SAlex RichardsonSRCS+=		explicit_bzero.c
938d14ced6SAlex Richardson.endif
948d14ced6SAlex Richardson
955425ba83SKa Ho Ng_WITH_FSPACECTL!= grep -c fspacectl ${HOST_INCLUDE_ROOT}/fcntl.h || true
965425ba83SKa Ho Ng.if ${_WITH_FSPACECTL} == 0
975425ba83SKa Ho NgINCS+=		fcntl.h
985425ba83SKa Ho NgSRCS+=		fspacectl.c
995425ba83SKa Ho Ng.endif
1007ec1ec4fSAlex Richardson
1017ec1ec4fSAlex Richardson.if exists(${HOST_INCLUDE_ROOT}/capsicum_helpers.h)
1027ec1ec4fSAlex Richardson_WITH_CAPH_ENTER!= grep -c caph_enter ${HOST_INCLUDE_ROOT}/capsicum_helpers.h || true
1037ec1ec4fSAlex Richardson_WITH_CAPH_RIGHTS_LIMIT!= grep -c caph_rights_limit ${HOST_INCLUDE_ROOT}/capsicum_helpers.h || true
1043b7e9bfeSAlex Richardson.endif
105fbe12f20SMark Johnston.if !defined(_WITH_CAPH_ENTER) || ${_WITH_CAPH_ENTER} == 0 || ${_WITH_CAPH_RIGHTS_LIMIT} == 0
1063b7e9bfeSAlex Richardson.PATH: ${SRCTOP}/lib/libcapsicum
1073b7e9bfeSAlex RichardsonINCS+=		capsicum_helpers.h
1083b7e9bfeSAlex Richardson.PATH: ${SRCTOP}/lib/libcasper/libcasper
1093b7e9bfeSAlex RichardsonINCS+=		libcasper.h
1103b7e9bfeSAlex Richardson.endif
1113b7e9bfeSAlex Richardson
1127ec1ec4fSAlex Richardson# rpcgen should build against the source tree rpc/types.h and not the host.
1137ec1ec4fSAlex Richardson# This is especially important on non-FreeBSD systems where the types may
1147ec1ec4fSAlex Richardson# not match.
1157ec1ec4fSAlex RichardsonRPCINCS+=	${SRCTOP}/sys/rpc/types.h
1167ec1ec4fSAlex Richardson
1177ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/mpool.h
1187ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/ndbm.h
1197ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/err.h
1207ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/stringlist.h
1217ec1ec4fSAlex Richardson
1227ec1ec4fSAlex Richardson# Needed to build arc4random.c
1237ec1ec4fSAlex RichardsonINCSGROUPS+=	CHACHA20INCS
1247ec1ec4fSAlex RichardsonCHACHA20INCSDIR=	${INCLUDEDIR}/crypto/chacha20
1257ec1ec4fSAlex RichardsonCHACHA20INCS+=	${SRCTOP}/sys/crypto/chacha20/_chacha.h \
1267ec1ec4fSAlex Richardson	${SRCTOP}/sys/crypto/chacha20/chacha.h
1277ec1ec4fSAlex Richardson
1287ec1ec4fSAlex Richardson_host_arch=${MACHINE}
1297ec1ec4fSAlex Richardson.if ${_host_arch} == "x86_64"
1307ec1ec4fSAlex Richardson# bmake on Linux/mac often prints that instead of amd64
1317ec1ec4fSAlex Richardson_host_arch=amd64
1328c22b9f3SKyle Evans.elif ${_host_arch} == "aarch64"
1338c22b9f3SKyle Evans# Linux calls arm64, aarch64, across the board
1348c22b9f3SKyle Evans_host_arch=arm64
1357b81e6c7SJustin Hibbits.elif ${_host_arch:Mppc*}
1367b81e6c7SJustin Hibbits_host_arch=powerpc
1377ec1ec4fSAlex Richardson.endif
1387ec1ec4fSAlex Richardson.if ${_host_arch} == "unknown"
1397ec1ec4fSAlex Richardson# HACK: If MACHINE is unknown, assume we are building on x86
1407ec1ec4fSAlex Richardson_host_arch=amd64
1417ec1ec4fSAlex Richardson.endif
1427ec1ec4fSAlex RichardsonMACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/elf.h
1437ec1ec4fSAlex Richardson.if ${_host_arch} == "amd64" || ${_host_arch} == "i386"
1447ec1ec4fSAlex RichardsonINCSGROUPS+=	X86INCS
1457ec1ec4fSAlex RichardsonX86INCSDIR=	${INCLUDEDIR}/x86
1467ec1ec4fSAlex RichardsonX86INCS+=	${SRCTOP}/sys/x86/include/elf.h
1477ec1ec4fSAlex Richardson.endif
1487ec1ec4fSAlex Richardson
1497ec1ec4fSAlex Richardson# needed for btxld:
1507ec1ec4fSAlex RichardsonMACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/exec.h
1517ec1ec4fSAlex RichardsonMACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/reloc.h
1527ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/a.out.h
1537ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/nlist.h
1547ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/imgact_aout.h
1557ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/nlist_aout.h
1567ec1ec4fSAlex Richardson
1573b073d2eSBrooks Davis# macOS's bitstring lacks FreeBSD-specific additions used by makefs's ZFS code
1583b073d2eSBrooks Davis# and Linux doesn't have it at all.  Older FreeBSD versions lack recent
1593b073d2eSBrooks Davis# additions.
1603b073d2eSBrooks DavisINCS+=	${SRCTOP}/include/bitstring.h
1613b073d2eSBrooks DavisSYSINCS+=	${SRCTOP}/sys/sys/bitstring.h
162ed845580SAlex Richardson
163ed845580SAlex Richardson.if ${.MAKE.OS} != "FreeBSD"
164ed845580SAlex Richardson.PATH: ${.CURDIR}/cross-build
165e9ba1fd5SJessica Clarke
166e9ba1fd5SJessica Clarke# Needed by our sys/types.h wrapper
167e9ba1fd5SJessica ClarkeSYSINCS+=	${SRCTOP}/sys/sys/bitcount.h
168e9ba1fd5SJessica Clarke
1697ec1ec4fSAlex Richardson# dbopen() behaves differently on Linux and FreeBSD so we ensure that we
1707ec1ec4fSAlex Richardson# bootstrap the FreeBSD db code. The cross-build headers #define dbopen() to
1717ec1ec4fSAlex Richardson# __freebsd_dbopen() so that we don't ever use the host version
1727ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/db.h
1737ec1ec4fSAlex RichardsonLIBC_SRCTOP=	${SRCTOP}/lib/libc/
1747ec1ec4fSAlex Richardson.include "${LIBC_SRCTOP}/db/Makefile.inc"
1757ec1ec4fSAlex Richardson# Do the same as we did for dbopen() for getopt() on since it's not compatible
1767ec1ec4fSAlex Richardson# on Linux (and to avoid surprises also compile the FreeBSD code on macOS)
1777ec1ec4fSAlex Richardson.PATH: ${LIBC_SRCTOP}/stdlib
1787ec1ec4fSAlex RichardsonSRCS+=	getopt.c getopt_long.c
1797ec1ec4fSAlex RichardsonINCS+=	 ${SRCTOP}/include/getopt.h
1807ec1ec4fSAlex Richardson
1817ec1ec4fSAlex Richardson# getcap.c is needed for cap_mkdb:
1827ec1ec4fSAlex Richardson.PATH: ${LIBC_SRCTOP}/gen
1837ec1ec4fSAlex RichardsonSRCS+=	getcap.c
184962a3814SAlex Richardson# Glibc does not provide all err*/warn* functions, and for macOS we need the
185962a3814SAlex Richardson# alias with the extra underscore.
186962a3814SAlex RichardsonSRCS+=	err.c
1877ec1ec4fSAlex Richardson# Add various libbc functions that are not available in glibc:
1887ec1ec4fSAlex RichardsonSRCS+=	stringlist.c setmode.c
1897ec1ec4fSAlex RichardsonSRCS+=	strtonum.c merge.c heapsort.c reallocf.c
1907ec1ec4fSAlex Richardson.PATH: ${LIBC_SRCTOP}/locale
1917ec1ec4fSAlex RichardsonSRCS+=	rpmatch.c
1927ec1ec4fSAlex Richardson
1937ec1ec4fSAlex Richardson.if ${.MAKE.OS} == "Linux"
1947ec1ec4fSAlex Richardson# On Linux, glibc does not provide strlcpy,strlcat or strmode.
1957ec1ec4fSAlex Richardson.PATH: ${LIBC_SRCTOP}/string
1967ec1ec4fSAlex RichardsonSRCS+=	strlcpy.c strlcat.c strmode.c
197548f8a65SJessica Clarke# On Linux, glibc provides ffs* but not fls*
198548f8a65SJessica ClarkeSRCS+=	fls.c flsl.c flsll.c
1997ec1ec4fSAlex Richardson# Compile the fgetln/fgetwln/closefrom fallback code from libbsd:
2007ec1ec4fSAlex RichardsonSRCS+=	fgetln_fallback.c fgetwln_fallback.c closefrom.c
2017ec1ec4fSAlex RichardsonCFLAGS.closefrom.c+=	-DSTDC_HEADERS -DHAVE_SYS_DIR_H -DHAVE_DIRENT_H \
2027ec1ec4fSAlex Richardson	-DHAVE_DIRFD -DHAVE_SYSCONF
203962a3814SAlex Richardson# Provide getprogname/setprograme
204962a3814SAlex RichardsonSRCS+=	progname.c
2054e64fb9fSAlex Richardson# Stub implementations of fflagstostr/strtofflags
2064e64fb9fSAlex RichardsonSRCS+=	fflags.c
2077ec1ec4fSAlex Richardson.endif
2087ec1ec4fSAlex Richardson# Provide the same arc4random implementation on Linux/macOS
2097ec1ec4fSAlex RichardsonCFLAGS.arc4random.c+=	-I${SRCTOP}/sys/crypto/chacha20 -D__isthreaded=1
2107ec1ec4fSAlex RichardsonSRCS+=	arc4random.c arc4random_uniform.c
2117ec1ec4fSAlex Richardson
2127ec1ec4fSAlex Richardson# expand_number() is not provided by either Linux or MacOS libutil
2137ec1ec4fSAlex Richardson.PATH: ${SRCTOP}/lib/libutil
2147ec1ec4fSAlex RichardsonSRCS+=	expand_number.c
2157ec1ec4fSAlex Richardson# Linux libutil also doesn't have fparseln
2167ec1ec4fSAlex RichardsonSRCS+=	fparseln.c
2177ec1ec4fSAlex Richardson# A dummy sysctl for tzsetup:
2187ec1ec4fSAlex RichardsonSRCS+=	fake_sysctl.c
2197ec1ec4fSAlex Richardson
2207ec1ec4fSAlex Richardson# capsicum support
2217ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/capsicum.h
2227ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/caprights.h
2237ec1ec4fSAlex RichardsonSRCS+=	capsicum_stubs.c
2247ec1ec4fSAlex Richardson# XXX: we can't add ${SRCTOP}/sys/kern to .PATH since that will causes
2257ec1ec4fSAlex Richardson# conflicts with other files. Instead copy subr_capability to the build dir.
2267ec1ec4fSAlex Richardsonsubr_capability.c: ${SRCTOP}/sys/kern/subr_capability.c
2277ec1ec4fSAlex Richardson	cp ${.ALLSRC} ${.TARGET}
2287ec1ec4fSAlex RichardsonSRCS+=	subr_capability.c
2297ec1ec4fSAlex RichardsonCLEANFILES+=	subr_capability.c
2307ec1ec4fSAlex Richardson.endif
2317ec1ec4fSAlex Richardson
232d5f4dd1bSMariusz ZaborskiCASPERINC+=	${SRCTOP}/lib/libcasper/services/cap_fileargs/cap_fileargs.h
233aefe30c5SMariusz ZaborskiCASPERINC+=	${SRCTOP}/lib/libcasper/services/cap_net/cap_net.h
234d5f4dd1bSMariusz Zaborski
23530aaff11SWarner Losh.if empty(SRCS)
23630aaff11SWarner LoshSRCS=		dummy.c
23730aaff11SWarner Losh.endif
23830aaff11SWarner Losh
239f09a3cc4SRuslan Ermilov.if defined(CROSS_BUILD_TESTING)
240f09a3cc4SRuslan ErmilovSUBDIR=		cross-build
241f09a3cc4SRuslan Ermilov.endif
242f09a3cc4SRuslan Ermilov
243162ae9c8SAlex Richardson# To allow bootstrapping makefs on FreeBSD 11 or non-FreeBSD systems:
244162ae9c8SAlex RichardsonUFSINCS+=	${SRCTOP}/sys/ufs/ufs/dinode.h
245162ae9c8SAlex RichardsonUFSINCS+=	${SRCTOP}/sys/ufs/ufs/dir.h
246162ae9c8SAlex RichardsonFFSINCS+=	${SRCTOP}/sys/ufs/ffs/fs.h
247162ae9c8SAlex Richardson
248162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/bootsect.h
249162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/bpb.h
250162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/denode.h
251162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/direntry.h
252162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/fat.h
253162ae9c8SAlex RichardsonMSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/msdosfsmount.h
254162ae9c8SAlex RichardsonDISKINCS+=	${SRCTOP}/sys/sys/disk/bsd.h
255162ae9c8SAlex Richardson
25663889bbdSAlex Richardson# Needed to build config (since it uses libnv)
257c36f4276SMarius StroblSYSINCS+=	${SRCTOP}/sys/sys/nv.h ${SRCTOP}/sys/sys/cnv.h \
258000321baSReid Linnemann		${SRCTOP}/sys/sys/dnv.h ${SRCTOP}/sys/sys/nv_namespace.h
25963889bbdSAlex Richardson
260313232ddSAlex Richardson# Needed when bootstrapping ldd (since it uses DF_1_PIE)
261313232ddSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/elf32.h
262313232ddSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/elf64.h
263313232ddSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/elf_common.h
264313232ddSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/elf_generic.h
2657ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/queue.h
2667ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/md5.h
2677ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/sbuf.h
2687ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/tree.h
269313232ddSAlex Richardson
270e7fd9688SToomas Soome# vtfontcvt is using sys/font.h
271e7fd9688SToomas SoomeSYSINCS+=	${SRCTOP}/sys/sys/font.h
2727ec1ec4fSAlex Richardson# For mkscrfil.c:
2737ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/consio.h
2747ec1ec4fSAlex Richardson# for gencat:
2757ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/nl_types.h
2767ec1ec4fSAlex Richardson# for vtfontcvt:
2777ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/fnv_hash.h
2787ec1ec4fSAlex Richardson# opensolaris compatibility
2797ec1ec4fSAlex RichardsonINCS+=	${SRCTOP}/include/elf.h
2807ec1ec4fSAlex RichardsonSYSINCS+=	${SRCTOP}/sys/sys/elf.h
2812d5d2a98SMark JohnstonSYSINCS+=	${SRCTOP}/sys/sys/ctf.h
282e7fd9688SToomas Soome
2838f62bca4SAlex Richardson# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't
2848f62bca4SAlex Richardson# accidentally run tools that are incompatible but happen to be in $PATH.
2858f62bca4SAlex Richardson# This is especially important when building on Linux/MacOS where many of the
2868f62bca4SAlex Richardson# programs used during the build accept different flags or generate different
2878f62bca4SAlex Richardson# output. On those platforms we only symlink the tools known to be compatible
2888f62bca4SAlex Richardson# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others
2898f62bca4SAlex Richardson# from the FreeBSD sources during the bootstrap-tools stage.
2908f62bca4SAlex Richardson
2918f62bca4SAlex Richardson# basic commands: It is fine to use the host version for all of these even on
2928f62bca4SAlex Richardson# Linux/MacOS since we only use flags that are supported by all of them.
293ea6c594cSAlex Richardson_host_tools_to_symlink=	basename bzip2 bunzip2 chmod chown cmp comm cp date dd \
2948f62bca4SAlex Richardson	dirname echo env false find fmt gzip gunzip head hostname id ln ls \
2955c9cb96aSAlex Richardson	mkdir mv nice patch rm sh sleep stat tee time touch tr true uname uniq \
2965c9cb96aSAlex Richardson	unxz wc which xz
2978f62bca4SAlex Richardson
2988f62bca4SAlex Richardson# We also need a symlink to the absolute path to the make binary used for
2998f62bca4SAlex Richardson# the toplevel makefile. This is not necessarily the same as `which make`
3008f62bca4SAlex Richardson# since e.g. on Linux and MacOS that will be GNU make.
3018f62bca4SAlex Richardson_make_abs!=	which "${MAKE}"
3028f62bca4SAlex Richardson_host_abs_tools_to_symlink=	${_make_abs}:make ${_make_abs}:bmake
3038f62bca4SAlex Richardson
304a8b20f4fSAlexander Richardson.if ${.MAKE.OS} == "FreeBSD"
305a8b20f4fSAlexander Richardson# When building on FreeBSD we always copy the host tools instead of linking
306a8b20f4fSAlexander Richardson# into WORLDTMP to avoid issues with incompatible libraries (see r364030).
307a8b20f4fSAlexander Richardson# Note: we could create links if we don't intend to update the current machine.
308a8b20f4fSAlexander Richardson_COPY_HOST_TOOL=cp -pf
309a8b20f4fSAlexander Richardson.else
310a8b20f4fSAlexander Richardson# However, this is not necessary on Linux/macOS. Additionally, copying the host
311a8b20f4fSAlexander Richardson# tools to another directory with cp -p results in freezes on macOS Big Sur for
312a8b20f4fSAlexander Richardson# some unknown reason. It can also break building inside docker containers if
313a8b20f4fSAlexander Richardson# there are ACLs on shared volumes.
314a8b20f4fSAlexander Richardson_COPY_HOST_TOOL=ln -sfn
3157ec1ec4fSAlex Richardson_make_abs!=	which "${MAKE}"
3167ec1ec4fSAlex Richardson_host_abs_tools_to_symlink+=	${_make_abs}:make ${_make_abs}:bmake
3177ec1ec4fSAlex Richardson.if ${.MAKE.OS} == "Darwin"
3187ec1ec4fSAlex Richardson# /usr/bin/cpp may invoke xcrun:
3197ec1ec4fSAlex Richardson_host_tools_to_symlink+=xcrun
3207ec1ec4fSAlex Richardson.endif  # ${.MAKE.OS} == "Darwin"
3217ec1ec4fSAlex Richardson# On Ubuntu /bin/sh is dash which is totally useless. Let's just link bash
3227ec1ec4fSAlex Richardson# as the build sh since that will work fine.
3237ec1ec4fSAlex Richardson_host_abs_tools_to_symlink+=	/bin/bash:sh
3247ec1ec4fSAlex Richardson_host_tools_to_symlink:=${_host_tools_to_symlink:Nsh}
3257ec1ec4fSAlex Richardson.endif
3267ec1ec4fSAlex Richardson
3278f62bca4SAlex Richardsonhost-symlinks:
3288f62bca4SAlex Richardson	@echo "Linking host tools into ${DESTDIR}/bin"
3298f62bca4SAlex Richardson.for _tool in ${_host_tools_to_symlink}
3308c9e4550SJessica Clarke	@export PATH=$${PATH}:/usr/local/bin; \
3318c9e4550SJessica Clarke	source_path=`which ${_tool} || echo /dev/null/no/such`; \
3328f62bca4SAlex Richardson	if [ ! -e "$${source_path}" ] ; then \
3335bb9250eSAlex Richardson		echo "Cannot find host tool '${_tool}' in PATH ($$PATH)." >&2; false; \
3348f62bca4SAlex Richardson	fi; \
33533176cdcSWarner Losh	rm -f "${DESTDIR}/bin/${_tool}"; \
336a8b20f4fSAlexander Richardson	${_COPY_HOST_TOOL} "$${source_path}" "${DESTDIR}/bin/${_tool}"
3378f62bca4SAlex Richardson.endfor
3388f62bca4SAlex Richardson.for _tool in ${_host_abs_tools_to_symlink}
3398f62bca4SAlex Richardson	@source_path="${_tool:S/:/ /:[1]}"; \
3408f62bca4SAlex Richardson	target_path="${DESTDIR}/bin/${_tool:S/:/ /:[2]}"; \
3418f62bca4SAlex Richardson	if [ ! -e "$${source_path}" ] ; then \
342ddf312e8SMark Johnston		echo "Host tool '$${source_path}' is missing"; false; \
3438f62bca4SAlex Richardson	fi; \
34433176cdcSWarner Losh	rm -f "$${target_path}"; \
345a8b20f4fSAlexander Richardson	${_COPY_HOST_TOOL} "$${source_path}" "$${target_path}"
3468f62bca4SAlex Richardson.endfor
3474f47920eSKyle Evans.if exists(/usr/libexec/flua)
34833176cdcSWarner Losh	rm -f ${DESTDIR}/usr/libexec/flua
349a8b20f4fSAlexander Richardson	${_COPY_HOST_TOOL} /usr/libexec/flua ${DESTDIR}/usr/libexec/flua
3504f47920eSKyle Evans.endif
3514acc8a67SAlex Richardson
3524acc8a67SAlex Richardson# Create all the directories that are needed during the legacy, bootstrap-tools
3534acc8a67SAlex Richardson# and cross-tools stages. We do this here using mkdir since mtree may not exist
3544acc8a67SAlex Richardson# yet (this happens if we are crossbuilding from Linux/Mac).
35517adf17bSSimon J. GerratyINSTALLDIR_LIST= \
35617adf17bSSimon J. Gerraty	bin \
35717adf17bSSimon J. Gerraty	lib/casper \
35817adf17bSSimon J. Gerraty	lib/geom \
35917adf17bSSimon J. Gerraty	usr/include/casper \
36094a82666SRyan Moeller	usr/include/private/ucl \
36117adf17bSSimon J. Gerraty	usr/include/private/zstd \
36217adf17bSSimon J. Gerraty	usr/lib \
3637ba31d58SJessica Clarke	usr/libdata/pkgconfig \
364f22a5921SKyle Evans	usr/libexec
36517adf17bSSimon J. Gerraty
3664acc8a67SAlex Richardsoninstalldirs:
36717adf17bSSimon J. Gerraty	mkdir -p ${INSTALLDIR_LIST:S,^,${DESTDIR}/,}
36817adf17bSSimon J. Gerraty
3698f62bca4SAlex Richardson# Link usr/bin, sbin, and usr/sbin to bin so that it doesn't matter whether a
3708f62bca4SAlex Richardson# bootstrap tool was added to WORLTMP with a symlink or by building it in the
3718f62bca4SAlex Richardson# bootstrap-tools phase. We could also overrride BINDIR when building bootstrap
3728f62bca4SAlex Richardson# tools but adding the symlinks is easier and means all tools are also
3738f62bca4SAlex Richardson# in the directory that they are installed to normally.
374b25c7179SAlex Richardson
375b25c7179SAlex Richardson.for _dir in sbin usr/sbin usr/bin
376b25c7179SAlex Richardson# delete existing directories from before r340157
3775bb9250eSAlex Richardson	@if [ -e ${DESTDIR}/${_dir} ] && [ ! -L ${DESTDIR}/${_dir} ]; then \
378b25c7179SAlex Richardson	    echo "removing old non-symlink ${DESTDIR}/${_dir}"; \
379b25c7179SAlex Richardson	    rm -rf "${DESTDIR}/${_dir}"; \
380b25c7179SAlex Richardson	fi
381b25c7179SAlex Richardson.endfor
382b25c7179SAlex Richardson	ln -sfn bin ${DESTDIR}/sbin
383b25c7179SAlex Richardson	ln -sfn ../bin ${DESTDIR}/usr/bin
384b25c7179SAlex Richardson	ln -sfn ../bin ${DESTDIR}/usr/sbin
3854acc8a67SAlex Richardson.for _group in ${INCSGROUPS:NINCS}
3864acc8a67SAlex Richardson	mkdir -p "${DESTDIR}/${${_group}DIR}"
3874acc8a67SAlex Richardson.endfor
3884acc8a67SAlex Richardson
38930aaff11SWarner Losh.include <bsd.lib.mk>
390