xref: /freebsd/share/mk/src.opts.mk (revision e47161e5f1f01ef300c6e7efdb9c92e3a6c497ff)
1#
2# Option file for FreeBSD /usr/src builds, at least the userland and boot loader
3# portions of the tree. These options generally chose what parts of the tree to
4# include or omit and are FreeBSD source tree specific.
5#
6# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf
7# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no}
8# with sensible (usually) defaults.
9#
10# Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
11# are applicable for that Makefile (typically there are none, but sometimes there
12# are exceptions). Recursive makes usually add MK_FOO=no for options that they wish
13# to omit from that make.
14#
15# Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO
16# variable.
17#
18# Makefiles may also assume that this file is included by src.opts.mk should it
19# need variables defined there prior to the end of the Makefile where
20# bsd.{subdir,lib.bin}.mk is traditionally included.
21#
22# The old-style YES_FOO and NO_FOO are being phased out. No new instances of them
23# should be added. Old instances should be removed since they were just to
24# bridge the gap between FreeBSD 4 and FreeBSD 5.
25#
26# Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
27# exception is made for _WITHOUT_SRCONF which turns off this mechanism
28# completely inside bsd.*.mk files).
29#
30
31.if !target(__<src.opts.mk>__)
32__<src.opts.mk>__:
33
34.include <bsd.own.mk>
35
36#
37# Define MK_* variables (which are either "yes" or "no") for users
38# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
39# make(1) environment.
40# These should be tested with `== "no"' or `!= "no"' in makefiles.
41# The NO_* variables should only be set by makefiles for variables
42# that haven't been converted over.
43#
44
45# These options are used by the src builds. Those listed in
46# __DEFAULT_YES_OPTIONS default to 'yes' and will build unless turned
47# off.  __DEFAULT_NO_OPTIONS will default to 'no' and won't build
48# unless turned on. Any options listed in 'BROKEN_OPTIONS' will be
49# hard-wired to 'no'.  "Broken" here means not working or
50# not-appropriate and/or not supported. It doesn't imply something is
51# wrong with the code. There's not a single good word for this, so
52# BROKEN was selected as the least imperfect one considered at the
53# time. Options are added to BROKEN_OPTIONS list on a per-arch basis.
54# At this time, there's no provision for mutually incompatible options.
55# Options listed in 'REQUIRED_OPTIONS' will be hard-wired to 'yes'; this
56# is intended as a transitional measure while options are in the process
57# of being removed.
58
59__DEFAULT_YES_OPTIONS = \
60    ACCT \
61    ACPI \
62    APM \
63    AT \
64    AUDIT \
65    AUTHPF \
66    AUTOFS \
67    BHYVE \
68    BLACKLIST \
69    BLUETOOTH \
70    BOOT \
71    BOOTPARAMD \
72    BOOTPD \
73    BSD_CPIO \
74    BSDINSTALL \
75    BSNMP \
76    BZIP2 \
77    CALENDAR \
78    CAROOT \
79    CCD \
80    CDDL \
81    CLANG \
82    CLANG_BOOTSTRAP \
83    CPP \
84    CROSS_COMPILER \
85    CRYPT \
86    CUSE \
87    CXGBETOOL \
88    DICT \
89    DMAGENT \
90    DTRACE \
91    DYNAMICROOT \
92    EE \
93    EFI \
94    ELFTOOLCHAIN_BOOTSTRAP \
95    EXAMPLES \
96    FILE \
97    FINGER \
98    FLOPPY \
99    FORTH \
100    FP_LIBC \
101    FREEBSD_UPDATE \
102    FTP \
103    GAMES \
104    GH_BC \
105    GNU_DIFF \
106    GOOGLETEST \
107    GPIO \
108    HAST \
109    HTML \
110    HYPERV \
111    ICONV \
112    INET \
113    INET6 \
114    INETD \
115    IPFILTER \
116    IPFW \
117    ISCSI \
118    JAIL \
119    KDUMP \
120    KVM \
121    LDNS \
122    LDNS_UTILS \
123    LEGACY_CONSOLE \
124    LLD \
125    LLD_BOOTSTRAP \
126    LLVM_ASSERTIONS \
127    LLVM_COV \
128    LLVM_CXXFILT \
129    LOADER_GELI \
130    LOADER_KBOOT \
131    LOADER_LUA \
132    LOADER_OFW \
133    LOADER_PXEBOOT \
134    LOADER_UBOOT \
135    LOCALES \
136    LOCATE \
137    LPR \
138    LS_COLORS \
139    MACHDEP_OPTIMIZATIONS \
140    MAIL \
141    MAILWRAPPER \
142    MAKE \
143    MLX5TOOL \
144    NETCAT \
145    NETGRAPH \
146    NETLINK \
147    NETLINK_SUPPORT \
148    NLS_CATALOGS \
149    NS_CACHING \
150    NTP \
151    NUAGEINIT \
152    OFED \
153    OPENSSL \
154    PAM \
155    PF \
156    PKGBOOTSTRAP \
157    PMC \
158    PPP \
159    PTHREADS_ASSERTIONS \
160    QUOTAS \
161    RADIUS_SUPPORT \
162    RBOOTD \
163    RESCUE \
164    ROUTED \
165    SENDMAIL \
166    SERVICESDB \
167    SETUID_LOGIN \
168    SHAREDOCS \
169    SOURCELESS \
170    SOURCELESS_HOST \
171    SOURCELESS_UCODE \
172    STATS \
173    SYSCONS \
174    SYSTEM_COMPILER \
175    SYSTEM_LINKER \
176    TALK \
177    TCP_WRAPPERS \
178    TCSH \
179    TELNET \
180    TEXTPROC \
181    TFTP \
182    UNBOUND \
183    USB \
184    UTMPX \
185    VI \
186    VT \
187    WIRELESS \
188    WPA_SUPPLICANT_EAPOL \
189    ZFS \
190    ZFS_TESTS \
191    LOADER_ZFS \
192    ZONEINFO
193
194__DEFAULT_NO_OPTIONS = \
195    BEARSSL \
196    BHYVE_SNAPSHOT \
197    CLANG_EXTRAS \
198    CLANG_FORMAT \
199    CLEAN \
200    DIALOG \
201    DETECT_TZ_CHANGES \
202    DISK_IMAGE_TOOLS_BOOTSTRAP \
203    DTRACE_ASAN \
204    DTRACE_TESTS \
205    EXPERIMENTAL \
206    HESIOD \
207    LOADER_BIOS_TEXTONLY \
208    LOADER_VERBOSE \
209    LOADER_VERIEXEC_PASS_MANIFEST \
210    LLVM_BINUTILS \
211    LLVM_FULL_DEBUGINFO \
212    MALLOC_PRODUCTION \
213    OFED_EXTRA \
214    OPENLDAP \
215    REPRODUCIBLE_BUILD \
216    RPCBIND_WARMSTART_SUPPORT \
217    SORT_THREADS \
218    ZONEINFO_LEAPSECONDS_SUPPORT \
219
220__REQUIRED_OPTIONS = \
221    CASPER
222
223# LEFT/RIGHT. Left options which default to "yes" unless their corresponding
224# RIGHT option is disabled.
225__DEFAULT_DEPENDENT_OPTIONS= \
226	CLANG_FULL/CLANG \
227	LLVM_TARGET_ALL/CLANG \
228	LOADER_VERIEXEC/BEARSSL \
229	LOADER_EFI_SECUREBOOT/LOADER_VERIEXEC \
230	LOADER_VERIEXEC_VECTX/LOADER_VERIEXEC \
231	VERIEXEC/BEARSSL \
232
233__SINGLE_OPTIONS = \
234	LIBC_MALLOC
235
236__LIBC_MALLOC_OPTIONS=	jemalloc
237__LIBC_MALLOC_DEFAULT=	jemalloc
238
239# MK_*_SUPPORT options which default to "yes" unless their corresponding
240# MK_* variable is set to "no".
241#
242.for var in \
243    BLACKLIST \
244    BZIP2 \
245    INET \
246    INET6 \
247    KERBEROS \
248    KVM \
249    NETGRAPH \
250    PAM \
251    TESTS \
252    WIRELESS
253__DEFAULT_DEPENDENT_OPTIONS+= ${var}_SUPPORT/${var}
254.endfor
255
256#
257# Default behaviour of some options depends on the architecture.  Unfortunately
258# this means that we have to test TARGET_ARCH (the buildworld case) as well
259# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
260# used at all in bsd.*.mk, but we have to make an exception here if we want
261# to allow defaults for some things like clang to vary by target architecture.
262# Additional, per-target behavior should be rarely added only after much
263# gnashing of teeth and grinding of gears.
264#
265.if defined(TARGET_ARCH)
266__T=${TARGET_ARCH}
267.else
268__T=${MACHINE_ARCH}
269.endif
270
271# All supported backends for LLVM_TARGET_XXX
272__LLVM_TARGETS= \
273		aarch64 \
274		arm \
275		powerpc \
276		riscv \
277		x86
278__LLVM_TARGET_FILT=	C/(amd64|i386)/x86/:C/powerpc.*/powerpc/:C/armv[67]/arm/:C/riscv.*/riscv/
279.for __llt in ${__LLVM_TARGETS}
280# Default enable the given TARGET's LLVM_TARGET support
281.if ${__T:${__LLVM_TARGET_FILT}} == ${__llt}
282__DEFAULT_YES_OPTIONS+=	LLVM_TARGET_${__llt:${__LLVM_TARGET_FILT}:tu}
283# aarch64 needs arm for -m32 support.
284.elif ${__T} == "aarch64" && ${__llt:Marm*} != ""
285__DEFAULT_DEPENDENT_OPTIONS+=	LLVM_TARGET_ARM/LLVM_TARGET_AARCH64
286# Default the rest of the LLVM_TARGETs to the value of MK_LLVM_TARGET_ALL.
287.else
288__DEFAULT_DEPENDENT_OPTIONS+=	LLVM_TARGET_${__llt:${__LLVM_TARGET_FILT}:tu}/LLVM_TARGET_ALL
289.endif
290.endfor
291
292__DEFAULT_NO_OPTIONS+=LLVM_TARGET_BPF LLVM_TARGET_MIPS
293
294.include <bsd.compiler.mk>
295
296.if ${__T} == "i386" || ${__T} == "amd64"
297__DEFAULT_NO_OPTIONS += FDT
298.else
299__DEFAULT_YES_OPTIONS += FDT
300.endif
301
302.if ${__T:Marm*} == "" && ${__T:Mriscv64*} == ""
303__DEFAULT_YES_OPTIONS+=LLDB
304.else
305__DEFAULT_NO_OPTIONS+=LLDB
306.endif
307# LIB32 is not supported on all 64-bit architectures.
308.if (${__T:Maarch64*} != "" && ((defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} != "gcc") || (!defined(X_COMPILER_TYPE) && ${COMPILER_TYPE} != "gcc"))) || ${__T} == "amd64" || ${__T} == "powerpc64"
309__DEFAULT_YES_OPTIONS+=LIB32
310.else
311BROKEN_OPTIONS+=LIB32
312.endif
313# EFI doesn't exist on powerpc (well, officially) and doesn't work on i386
314.if ${__T:Mpowerpc*} || ${__T} == "i386"
315BROKEN_OPTIONS+=EFI
316.endif
317# Bad coupling for libsecure stuff with bearssl and efi, so broken on EFI
318.if ${__T:Mpowerpc*}
319BROKEN_OPTIONS+=BEARSSL		# bearssl brings in secure efi stuff xxx
320.endif
321# OFW is only for powerpc, exclude others
322.if ${__T:Mpowerpc*} == ""
323BROKEN_OPTIONS+=LOADER_OFW
324.endif
325# KBOOT is only for powerpc64 (powerpc64le broken) amd64 and aarch64
326.if ${__T} != "powerpc64" && ${__T} != "amd64" && ${__T} != "aarch64"
327BROKEN_OPTIONS+=LOADER_KBOOT
328.endif
329# UBOOT is only for arm, and big-endian powerpc
330.if (${__T:Marm*} == "" && ${__T:Mpowerpc*} == "") || ${__T} == "powerpc64le"
331BROKEN_OPTIONS+=LOADER_UBOOT
332.endif
333# GELI and Lua in loader currently cause boot failures on powerpc.
334# Further debugging is required -- probably they are just broken on big
335# endian systems generically (they jump to null pointers or try to read
336# crazy high addresses, which is typical of endianness problems).
337.if ${__T:Mpowerpc*}
338BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
339.endif
340
341# Kernel TLS is enabled by default on amd64, aarch64 and powerpc64*
342.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T:Mpowerpc64*} != ""
343__DEFAULT_YES_OPTIONS+=OPENSSL_KTLS
344.else
345__DEFAULT_NO_OPTIONS+=OPENSSL_KTLS
346.endif
347
348.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \
349    ${__T:Mpowerpc64*} == ""
350BROKEN_OPTIONS+=CXGBETOOL
351BROKEN_OPTIONS+=MLX5TOOL
352.endif
353
354.if ${__T} != "amd64" && ${__T} != "i386" && ${__T} != "aarch64"
355BROKEN_OPTIONS+=HYPERV
356.endif
357
358.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
359    ${__T:Mpowerpc64*} != "" || ${__T:Mriscv64*} != ""
360__DEFAULT_YES_OPTIONS+=OPENMP
361.else
362__DEFAULT_NO_OPTIONS+=OPENMP
363.endif
364
365# Broken on 32-bit arm, kernel module compile errors
366.if ${__T:Marm*} != ""
367BROKEN_OPTIONS+= OFED
368.endif
369
370# MK_host_egacy is set by local.sys.mk so is valid here
371.if ${MACHINE:Nhost*} == "" && ${MK_host_egacy} == "yes"
372# we cannot expect tests to work
373BROKEN_OPTIONS+= TESTS
374.endif
375
376.-include <site.src.opts.mk>
377
378.include <bsd.mkopt.mk>
379
380#
381# Force some options off if their dependencies are off.
382# Order is somewhat important.
383#
384.if ${MK_SOURCELESS} == "no"
385MK_SOURCELESS_HOST:=	no
386MK_SOURCELESS_UCODE:= no
387.endif
388
389.if ${MK_CDDL} == "no"
390MK_CTF:=	no
391MK_DTRACE:=	no
392MK_LOADER_ZFS:=	no
393MK_ZFS:=	no
394.endif
395
396.if ${MK_CRYPT} == "no"
397MK_OPENSSL:=	no
398MK_OPENSSH:=	no
399MK_KERBEROS:=	no
400MK_KERBEROS_SUPPORT:=	no
401.endif
402
403.if ${MK_DTRACE} == "no"
404MK_CTF:=	no
405.endif
406
407.if ${MK_MAIL} == "no"
408MK_MAILWRAPPER:= no
409MK_SENDMAIL:=	no
410MK_DMAGENT:=	no
411.endif
412
413.if ${MK_NETGRAPH} == "no"
414MK_BLUETOOTH:=	no
415.endif
416
417.if ${MK_NLS} == "no"
418MK_NLS_CATALOGS:= no
419.endif
420
421.if ${MK_OPENSSL} == "no"
422MK_DMAGENT:=	no
423MK_OPENSSH:=	no
424MK_OPENSSL_KTLS:=	no
425MK_KERBEROS:=	no
426MK_KERBEROS_SUPPORT:=	no
427MK_LDNS:=	no
428MK_PKGBOOTSTRAP:=	no
429MK_LOADER_ZFS:=	no
430MK_ZFS:=	no
431.endif
432
433.if ${MK_LDNS} == "no"
434MK_LDNS_UTILS:=	no
435MK_UNBOUND:= no
436.endif
437
438.if ${MK_PF} == "no"
439MK_AUTHPF:=	no
440.endif
441
442.if ${MK_OFED} == "no"
443MK_OFED_EXTRA:=	no
444.endif
445
446.if ${MK_TESTS} == "no"
447MK_DTRACE_TESTS:= no
448MK_ZFS_TESTS:= no
449.endif
450
451.if ${MK_ZFS} == "no"
452MK_ZFS_TESTS:=	no
453.endif
454
455.if ${MK_TESTS_SUPPORT} == "no"
456MK_GOOGLETEST:=	no
457.endif
458
459.if ${MK_ZONEINFO} == "no"
460MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
461.endif
462
463.if ${MK_CROSS_COMPILER} == "no"
464MK_CLANG_BOOTSTRAP:= no
465MK_ELFTOOLCHAIN_BOOTSTRAP:= no
466MK_LLD_BOOTSTRAP:= no
467.endif
468
469.if ${MK_TOOLCHAIN} == "no"
470MK_CLANG:=	no
471MK_LLD:=	no
472MK_LLDB:=	no
473MK_LLVM_BINUTILS:=	no
474.endif
475
476.if ${MK_CLANG} == "no"
477MK_CLANG_EXTRAS:= no
478MK_CLANG_FORMAT:= no
479MK_CLANG_FULL:= no
480MK_LLVM_COV:= no
481.endif
482
483.if ${MK_ASAN} == "yes"
484# In order to get sensible backtraces from ASAN we have to install
485# llvm-symbolizer as /usr/bin/addr2line instead of the elftoolchain version.
486MK_LLVM_BINUTILS:=	yes
487.endif
488
489.if ${MK_LLVM_BINUTILS} == "yes"
490# MK_LLVM_CXXFILT is a subset of MK_LLVM_BINUTILS and should therefore be
491# enabled if MK_LLVM_BINUTILS is set.
492MK_LLVM_CXXFILT:=	yes
493.endif
494
495.if ${MK_LOADER_VERIEXEC} == "no"
496MK_LOADER_VERIEXEC_PASS_MANIFEST := no
497.endif
498
499#
500# MK_* options whose default value depends on another option.
501#
502.for vv in \
503    GSSAPI/KERBEROS \
504    MAN_UTILS/MAN
505.if defined(WITH_${vv:H})
506MK_${vv:H}:=	yes
507.elif defined(WITHOUT_${vv:H})
508MK_${vv:H}:=	no
509.else
510MK_${vv:H}:=	${MK_${vv:T}}
511.endif
512.endfor
513
514#
515# Set defaults for the MK_*_SUPPORT variables.
516#
517
518.endif #  !target(__<src.opts.mk>__)
519