xref: /freebsd/tools/build/Makefile (revision d7d962ead0b6e5e8a39202d0590022082bf5bfb6)
1# $FreeBSD$
2
3.PATH: ${.CURDIR}/../../include
4
5LIB=		egacy
6SRC=
7INCSGROUPS=	INCS SYSINCS CASPERINC UFSINCS FFSINCS MSDOSFSINCS DISKINCS
8INCSGROUPS+=	MACHINESYSINCS RPCINCS
9INCS=
10
11SYSINCSDIR=	${INCLUDEDIR}/sys
12CASPERINCDIR=	${INCLUDEDIR}/casper
13# Also add ufs/ffs/msdosfs/disk headers to allow building makefs as a bootstrap tool
14UFSINCSDIR=	${INCLUDEDIR}/ufs/ufs
15FFSINCSDIR=	${INCLUDEDIR}/ufs/ffs
16MSDOSFSINCSDIR=	${INCLUDEDIR}/fs/msdosfs
17DISKINCSDIR=	${INCLUDEDIR}/sys/disk
18MACHINESYSINCSDIR=	${INCLUDEDIR}/machine
19RPCINCSDIR=	${INCLUDEDIR}/rpc
20
21BOOTSTRAPPING?=	0
22
23
24.if ${.MAKE.OS} == "Darwin"
25_XCODE_ROOT!=xcode-select -p
26# since macOS 10.14 C headers are no longer installed in /usr but only
27# provided via the SDK
28.if ${_XCODE_ROOT} == "/Library/Developer/CommandLineTools"
29# Only command line tools installed -> host headers are in the SDKs directory
30_MACOS_SDK_DIR=${_XCODE_ROOT}/SDKs/MacOSX.sdk/
31.else
32# Full XCode installed -> host headers are below Platforms/MacOSX.platform
33_MACOS_SDK_DIR=${_XCODE_ROOT}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
34.endif
35HOST_INCLUDE_ROOT=${_MACOS_SDK_DIR}/usr/include
36.if !exists(${HOST_INCLUDE_ROOT}/stdio.h)
37.error "You must install the macOS SDK (try xcode-select --install)"
38.endif
39.else
40HOST_INCLUDE_ROOT=/usr/include
41.endif
42
43# Allow building libc-internal files (also on non-FreeBSD hosts)
44CFLAGS+=	-I${.CURDIR}/libc-bootstrap
45# Symbol versioning is not required for -legacy (and macOS bootstrap)
46MK_SYMVER=	no
47
48_WITH_PWCACHEDB!= grep -c pwcache_groupdb ${HOST_INCLUDE_ROOT}/grp.h || true
49.if ${_WITH_PWCACHEDB} == 0
50.PATH: ${.CURDIR}/../../contrib/libc-pwcache
51CFLAGS.pwcache.c+=	-I${.CURDIR}/../../contrib/libc-pwcache
52SRCS+=		pwcache.c
53.endif
54
55_WITH_STRSVIS!=	grep -c strsvis ${HOST_INCLUDE_ROOT}/vis.h 2>/dev/null || true
56.if ${_WITH_STRSVIS} == 0
57.PATH: ${.CURDIR}/../../contrib/libc-vis
58INCS+=		vis.h
59SRCS+=		vis.c unvis.c
60CFLAGS.vis.c+=	-I${.CURDIR}/../../contrib/libc-vis -DHAVE_VIS=0 -DHAVE_SVIS=0
61CFLAGS.unvis.c+=	-I${.CURDIR}/../../contrib/libc-vis -DHAVE_VIS=0 -DHAVE_SVIS=0
62.endif
63
64_WITH_REALLOCARRAY!= grep -c reallocarray ${HOST_INCLUDE_ROOT}/stdlib.h || true
65.if ${_WITH_REALLOCARRAY} == 0
66.PATH: ${.CURDIR}/../../lib/libc/stdlib
67INCS+=		stdlib.h
68SRCS+=		reallocarray.c
69.endif
70
71_WITH_UTIMENS!= grep -c utimensat ${HOST_INCLUDE_ROOT}/sys/stat.h || true
72.if ${_WITH_UTIMENS} == 0
73SYSINCS+=	stat.h
74SRCS+=		futimens.c utimensat.c
75.endif
76
77_WITH_EXPLICIT_BZERO!= grep -c explicit_bzero ${HOST_INCLUDE_ROOT}/strings.h || true
78.if ${_WITH_EXPLICIT_BZERO} == 0
79# .PATH: ${SRCTOP}/sys/libkern
80# Adding sys/libkern to .PATH breaks building the cross-build compat library
81# since that attempts to build strlcpy.c from libc and adding libkern here will
82# cause it to pick the file from libkern instead (which won't compile).
83# Avoid modifying .PATH by creating a copy in the build directory instead.
84explicit_bzero.c: ${SRCTOP}/sys/libkern/explicit_bzero.c
85	cp ${.ALLSRC} ${.TARGET}
86CLEANFILES+=	explicit_bzero.c
87INCS+=		strings.h
88SRCS+=		explicit_bzero.c
89.endif
90
91_WITH_FSPACECTL!= grep -c fspacectl ${HOST_INCLUDE_ROOT}/fcntl.h || true
92.if ${_WITH_FSPACECTL} == 0
93INCS+=		fcntl.h
94SRCS+=		fspacectl.c
95.endif
96
97.if exists(${HOST_INCLUDE_ROOT}/capsicum_helpers.h)
98_WITH_CAPH_ENTER!= grep -c caph_enter ${HOST_INCLUDE_ROOT}/capsicum_helpers.h || true
99_WITH_CAPH_RIGHTS_LIMIT!= grep -c caph_rights_limit ${HOST_INCLUDE_ROOT}/capsicum_helpers.h || true
100.endif
101.if !defined(_WITH_CAPH_ENTER) || ${_WITH_CAPH_ENTER} == 0 || ${_WITH_CAPH_RIGHTS_LIMIT} == 0
102.PATH: ${SRCTOP}/lib/libcapsicum
103INCS+=		capsicum_helpers.h
104.PATH: ${SRCTOP}/lib/libcasper/libcasper
105INCS+=		libcasper.h
106.endif
107
108# rpcgen should build against the source tree rpc/types.h and not the host.
109# This is especially important on non-FreeBSD systems where the types may
110# not match.
111RPCINCS+=	${SRCTOP}/sys/rpc/types.h
112
113INCS+=	${SRCTOP}/include/mpool.h
114INCS+=	${SRCTOP}/include/ndbm.h
115INCS+=	${SRCTOP}/include/err.h
116INCS+=	${SRCTOP}/include/stringlist.h
117
118# Needed to build arc4random.c
119INCSGROUPS+=	CHACHA20INCS
120CHACHA20INCSDIR=	${INCLUDEDIR}/crypto/chacha20
121CHACHA20INCS+=	${SRCTOP}/sys/crypto/chacha20/_chacha.h \
122	${SRCTOP}/sys/crypto/chacha20/chacha.h
123
124_host_arch=${MACHINE}
125.if ${_host_arch} == "x86_64"
126# bmake on Linux/mac often prints that instead of amd64
127_host_arch=amd64
128.elif ${_host_arch:Mppc*}
129_host_arch=powerpc
130.endif
131.if ${_host_arch} == "unknown"
132# HACK: If MACHINE is unknown, assume we are building on x86
133_host_arch=amd64
134.endif
135MACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/elf.h
136.if ${_host_arch} == "amd64" || ${_host_arch} == "i386"
137INCSGROUPS+=	X86INCS
138X86INCSDIR=	${INCLUDEDIR}/x86
139X86INCS+=	${SRCTOP}/sys/x86/include/elf.h
140.endif
141
142# needed for btxld:
143MACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/exec.h
144MACHINESYSINCS+=	${SRCTOP}/sys/${_host_arch}/include/reloc.h
145INCS+=	${SRCTOP}/include/a.out.h
146INCS+=	${SRCTOP}/include/nlist.h
147SYSINCS+=	${SRCTOP}/sys/sys/imgact_aout.h
148SYSINCS+=	${SRCTOP}/sys/sys/nlist_aout.h
149
150
151.if ${.MAKE.OS} != "FreeBSD"
152.PATH: ${.CURDIR}/cross-build
153# dbopen() behaves differently on Linux and FreeBSD so we ensure that we
154# bootstrap the FreeBSD db code. The cross-build headers #define dbopen() to
155# __freebsd_dbopen() so that we don't ever use the host version
156INCS+=	${SRCTOP}/include/db.h
157LIBC_SRCTOP=	${SRCTOP}/lib/libc/
158.include "${LIBC_SRCTOP}/db/Makefile.inc"
159# Do the same as we did for dbopen() for getopt() on since it's not compatible
160# on Linux (and to avoid surprises also compile the FreeBSD code on macOS)
161.PATH: ${LIBC_SRCTOP}/stdlib
162SRCS+=	getopt.c getopt_long.c
163INCS+=	 ${SRCTOP}/include/getopt.h
164
165# getcap.c is needed for cap_mkdb:
166.PATH: ${LIBC_SRCTOP}/gen
167SRCS+=	getcap.c
168# Glibc does not provide all err*/warn* functions, and for macOS we need the
169# alias with the extra underscore.
170SRCS+=	err.c
171# Add various libbc functions that are not available in glibc:
172SRCS+=	stringlist.c setmode.c
173SRCS+=	strtonum.c merge.c heapsort.c reallocf.c
174.PATH: ${LIBC_SRCTOP}/locale
175SRCS+=	rpmatch.c
176
177.if ${.MAKE.OS} == "Linux"
178# On Linux, glibc does not provide strlcpy,strlcat or strmode.
179.PATH: ${LIBC_SRCTOP}/string
180SRCS+=	strlcpy.c strlcat.c strmode.c
181# Compile the fgetln/fgetwln/closefrom fallback code from libbsd:
182SRCS+=	fgetln_fallback.c fgetwln_fallback.c closefrom.c
183CFLAGS.closefrom.c+=	-DSTDC_HEADERS -DHAVE_SYS_DIR_H -DHAVE_DIRENT_H \
184	-DHAVE_DIRFD -DHAVE_SYSCONF
185# Provide getprogname/setprograme
186SRCS+=	progname.c
187# Stub implementations of fflagstostr/strtofflags
188SRCS+=	fflags.c
189.endif
190# Provide the same arc4random implementation on Linux/macOS
191CFLAGS.arc4random.c+=	-I${SRCTOP}/sys/crypto/chacha20 -D__isthreaded=1
192SRCS+=	arc4random.c arc4random_uniform.c
193
194# expand_number() is not provided by either Linux or MacOS libutil
195.PATH: ${SRCTOP}/lib/libutil
196SRCS+=	expand_number.c
197# Linux libutil also doesn't have fparseln
198SRCS+=	fparseln.c
199# A dummy sysctl for tzsetup:
200SRCS+=	fake_sysctl.c
201
202# capsicum support
203SYSINCS+=	${SRCTOP}/sys/sys/capsicum.h
204SYSINCS+=	${SRCTOP}/sys/sys/caprights.h
205SRCS+=	capsicum_stubs.c
206# XXX: we can't add ${SRCTOP}/sys/kern to .PATH since that will causes
207# conflicts with other files. Instead copy subr_capability to the build dir.
208subr_capability.c: ${SRCTOP}/sys/kern/subr_capability.c
209	cp ${.ALLSRC} ${.TARGET}
210SRCS+=	subr_capability.c
211CLEANFILES+=	subr_capability.c
212.endif
213
214CASPERINC+=	${SRCTOP}/lib/libcasper/services/cap_fileargs/cap_fileargs.h
215CASPERINC+=	${SRCTOP}/lib/libcasper/services/cap_net/cap_net.h
216
217.if empty(SRCS)
218SRCS=		dummy.c
219.endif
220
221.if defined(CROSS_BUILD_TESTING)
222SUBDIR=		cross-build
223.endif
224
225# To allow bootstrapping makefs on FreeBSD 11 or non-FreeBSD systems:
226UFSINCS+=	${SRCTOP}/sys/ufs/ufs/dinode.h
227UFSINCS+=	${SRCTOP}/sys/ufs/ufs/dir.h
228FFSINCS+=	${SRCTOP}/sys/ufs/ffs/fs.h
229
230MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/bootsect.h
231MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/bpb.h
232MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/denode.h
233MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/direntry.h
234MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/fat.h
235MSDOSFSINCS+=	${SRCTOP}/sys/fs/msdosfs/msdosfsmount.h
236DISKINCS+=	${SRCTOP}/sys/sys/disk/bsd.h
237
238# Needed to build config (since it uses libnv)
239SYSINCS+=	${SRCTOP}/sys/sys/nv.h ${SRCTOP}/sys/sys/cnv.h \
240		${SRCTOP}/sys/sys/dnv.h
241
242# Needed when bootstrapping ldd (since it uses DF_1_PIE)
243SYSINCS+=	${SRCTOP}/sys/sys/elf32.h
244SYSINCS+=	${SRCTOP}/sys/sys/elf64.h
245SYSINCS+=	${SRCTOP}/sys/sys/elf_common.h
246SYSINCS+=	${SRCTOP}/sys/sys/elf_generic.h
247SYSINCS+=	${SRCTOP}/sys/sys/queue.h
248SYSINCS+=	${SRCTOP}/sys/sys/md5.h
249SYSINCS+=	${SRCTOP}/sys/sys/sbuf.h
250SYSINCS+=	${SRCTOP}/sys/sys/tree.h
251
252# vtfontcvt is using sys/font.h
253SYSINCS+=	${SRCTOP}/sys/sys/font.h
254# For mkscrfil.c:
255SYSINCS+=	${SRCTOP}/sys/sys/consio.h
256# for gencat:
257INCS+=	${SRCTOP}/include/nl_types.h
258# for vtfontcvt:
259SYSINCS+=	${SRCTOP}/sys/sys/fnv_hash.h
260# opensolaris compatibility
261INCS+=	${SRCTOP}/include/elf.h
262SYSINCS+=	${SRCTOP}/sys/sys/elf.h
263
264# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't
265# accidentally run tools that are incompatible but happen to be in $PATH.
266# This is especially important when building on Linux/MacOS where many of the
267# programs used during the build accept different flags or generate different
268# output. On those platforms we only symlink the tools known to be compatible
269# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others
270# from the FreeBSD sources during the bootstrap-tools stage.
271
272# basic commands: It is fine to use the host version for all of these even on
273# Linux/MacOS since we only use flags that are supported by all of them.
274_host_tools_to_symlink=	basename bzip2 bunzip2 chmod chown cmp comm cp date dd \
275	dirname echo env false find fmt gzip gunzip head hostname id ln ls \
276	mkdir mv nice patch rm sh sleep stat tee time touch tr true uname uniq \
277	unxz wc which xz
278
279# We also need a symlink to the absolute path to the make binary used for
280# the toplevel makefile. This is not necessarily the same as `which make`
281# since e.g. on Linux and MacOS that will be GNU make.
282_make_abs!=	which "${MAKE}"
283_host_abs_tools_to_symlink=	${_make_abs}:make ${_make_abs}:bmake
284
285.if ${.MAKE.OS} == "FreeBSD"
286# When building on FreeBSD we always copy the host tools instead of linking
287# into WORLDTMP to avoid issues with incompatible libraries (see r364030).
288# Note: we could create links if we don't intend to update the current machine.
289_COPY_HOST_TOOL=cp -pf
290.else
291# However, this is not necessary on Linux/macOS. Additionally, copying the host
292# tools to another directory with cp -p results in freezes on macOS Big Sur for
293# some unknown reason. It can also break building inside docker containers if
294# there are ACLs on shared volumes.
295_COPY_HOST_TOOL=ln -sfn
296_make_abs!=	which "${MAKE}"
297_host_abs_tools_to_symlink+=	${_make_abs}:make ${_make_abs}:bmake
298.if ${.MAKE.OS} == "Darwin"
299# /usr/bin/cpp may invoke xcrun:
300_host_tools_to_symlink+=xcrun
301.endif  # ${.MAKE.OS} == "Darwin"
302# On Ubuntu /bin/sh is dash which is totally useless. Let's just link bash
303# as the build sh since that will work fine.
304_host_abs_tools_to_symlink+=	/bin/bash:sh
305_host_tools_to_symlink:=${_host_tools_to_symlink:Nsh}
306.endif
307
308host-symlinks:
309	@echo "Linking host tools into ${DESTDIR}/bin"
310.for _tool in ${_host_tools_to_symlink}
311	@export PATH=$${PATH}:/usr/local/bin; \
312	source_path=`which ${_tool} || echo /dev/null/no/such`; \
313	if [ ! -e "$${source_path}" ] ; then \
314		echo "Cannot find host tool '${_tool}' in PATH ($$PATH)." >&2; false; \
315	fi; \
316	rm -f "${DESTDIR}/bin/${_tool}"; \
317	${_COPY_HOST_TOOL} "$${source_path}" "${DESTDIR}/bin/${_tool}"
318.endfor
319.for _tool in ${_host_abs_tools_to_symlink}
320	@source_path="${_tool:S/:/ /:[1]}"; \
321	target_path="${DESTDIR}/bin/${_tool:S/:/ /:[2]}"; \
322	if [ ! -e "$${source_path}" ] ; then \
323		echo "Host tool '${src_path}' is missing"; false; \
324	fi; \
325	rm -f "$${target_path}"; \
326	${_COPY_HOST_TOOL} "$${source_path}" "$${target_path}"
327.endfor
328.if exists(/usr/libexec/flua)
329	rm -f ${DESTDIR}/usr/libexec/flua
330	${_COPY_HOST_TOOL} /usr/libexec/flua ${DESTDIR}/usr/libexec/flua
331.endif
332
333# Create all the directories that are needed during the legacy, bootstrap-tools
334# and cross-tools stages. We do this here using mkdir since mtree may not exist
335# yet (this happens if we are crossbuilding from Linux/Mac).
336INSTALLDIR_LIST= \
337	bin \
338	lib/casper \
339	lib/geom \
340	usr/include/casper \
341	usr/include/private/ucl \
342	usr/include/private/zstd \
343	usr/lib \
344	usr/libexec
345
346installdirs:
347	mkdir -p ${INSTALLDIR_LIST:S,^,${DESTDIR}/,}
348
349# Link usr/bin, sbin, and usr/sbin to bin so that it doesn't matter whether a
350# bootstrap tool was added to WORLTMP with a symlink or by building it in the
351# bootstrap-tools phase. We could also overrride BINDIR when building bootstrap
352# tools but adding the symlinks is easier and means all tools are also
353# in the directory that they are installed to normally.
354
355.for _dir in sbin usr/sbin usr/bin
356# delete existing directories from before r340157
357	@if [ -e ${DESTDIR}/${_dir} ] && [ ! -L ${DESTDIR}/${_dir} ]; then \
358	    echo "removing old non-symlink ${DESTDIR}/${_dir}"; \
359	    rm -rf "${DESTDIR}/${_dir}"; \
360	fi
361.endfor
362	ln -sfn bin ${DESTDIR}/sbin
363	ln -sfn ../bin ${DESTDIR}/usr/bin
364	ln -sfn ../bin ${DESTDIR}/usr/sbin
365.for _group in ${INCSGROUPS:NINCS}
366	mkdir -p "${DESTDIR}/${${_group}DIR}"
367.endfor
368
369.include <bsd.lib.mk>
370