src.opts.mk revision 344413
1# $FreeBSD: stable/11/share/mk/src.opts.mk 344413 2019-02-21 03:18:12Z kevans $
2#
3# Option file for FreeBSD /usr/src builds.
4#
5# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf
6# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no}
7# with sensible (usually) defaults.
8#
9# Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
10# are applicable for that Makefile (typically there are none, but sometimes there
11# are exceptions). Recursive makes usually add MK_FOO=no for options that they wish
12# to omit from that make.
13#
14# Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO
15# variable.
16#
17# Makefiles may also assume that this file is included by src.opts.mk should it
18# need variables defined there prior to the end of the Makefile where
19# bsd.{subdir,lib.bin}.mk is traditionally included.
20#
21# The old-style YES_FOO and NO_FOO are being phased out. No new instances of them
22# should be added. Old instances should be removed since they were just to
23# bridge the gap between FreeBSD 4 and FreeBSD 5.
24#
25# Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
26# exception is made for _WITHOUT_SRCONF which turns off this mechanism
27# completely inside bsd.*.mk files).
28#
29
30.if !target(__<src.opts.mk>__)
31__<src.opts.mk>__:
32
33.include <bsd.own.mk>
34
35#
36# Define MK_* variables (which are either "yes" or "no") for users
37# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
38# make(1) environment.
39# These should be tested with `== "no"' or `!= "no"' in makefiles.
40# The NO_* variables should only be set by makefiles for variables
41# that haven't been converted over.
42#
43
44# These options are used by src the builds
45
46__DEFAULT_YES_OPTIONS = \
47    ACCT \
48    ACPI \
49    AMD \
50    APM \
51    AT \
52    ATM \
53    AUDIT \
54    AUTHPF \
55    AUTOFS \
56    BHYVE \
57    BINUTILS \
58    BINUTILS_BOOTSTRAP \
59    BLACKLIST \
60    BLUETOOTH \
61    BOOT \
62    BOOTPARAMD \
63    BOOTPD \
64    BSD_CPIO \
65    BSD_GREP_FASTMATCH \
66    BSDINSTALL \
67    BSNMP \
68    BZIP2 \
69    CALENDAR \
70    CAPSICUM \
71    CASPER \
72    CCD \
73    CDDL \
74    CPP \
75    CROSS_COMPILER \
76    CRYPT \
77    CTM \
78    CUSE \
79    CXX \
80    DIALOG \
81    DICT \
82    DMAGENT \
83    DYNAMICROOT \
84    ED_CRYPTO \
85    EE \
86    ELFCOPY_AS_OBJCOPY \
87    EFI \
88    ELFTOOLCHAIN_BOOTSTRAP \
89    EXAMPLES \
90    FDT \
91    FILE \
92    FINGER \
93    FLOPPY \
94    FMTREE \
95    FORTH \
96    FP_LIBC \
97    FREEBSD_UPDATE \
98    FTP \
99    GAMES \
100    GCOV \
101    GDB \
102    GNU \
103    GNU_DIFF \
104    GNU_GREP \
105    GNU_GREP_COMPAT \
106    GPIO \
107    GPL_DTC \
108    GROFF \
109    HAST \
110    HTML \
111    HYPERV \
112    ICONV \
113    INET \
114    INET6 \
115    INETD \
116    IPFILTER \
117    IPFW \
118    ISCSI \
119    JAIL \
120    KDUMP \
121    KVM \
122    LDNS \
123    LDNS_UTILS \
124    LEGACY_CONSOLE \
125    LIB32 \
126    LIBPTHREAD \
127    LIBTHR \
128    LOADER_GELI \
129    LOADER_LUA \
130    LOADER_OFW \
131    LOADER_UBOOT \
132    LOCALES \
133    LOCATE \
134    LPR \
135    LS_COLORS \
136    LZMA_SUPPORT \
137    MAIL \
138    MAILWRAPPER \
139    MAKE \
140    MANDOCDB \
141    NDIS \
142    NETCAT \
143    NETGRAPH \
144    NLS_CATALOGS \
145    NS_CACHING \
146    NTP \
147    OPENSSL \
148    PAM \
149    PC_SYSINSTALL \
150    PF \
151    PKGBOOTSTRAP \
152    PMC \
153    PORTSNAP \
154    PPP \
155    QUOTAS \
156    RADIUS_SUPPORT \
157    RCMDS \
158    RBOOTD \
159    RCS \
160    RESCUE \
161    ROUTED \
162    SENDMAIL \
163    SETUID_LOGIN \
164    SHAREDOCS \
165    SOURCELESS \
166    SOURCELESS_HOST \
167    SOURCELESS_UCODE \
168    SVNLITE \
169    SYSCONS \
170    SYSTEM_COMPILER \
171    TALK \
172    TCP_WRAPPERS \
173    TCSH \
174    TELNET \
175    TESTS \
176    TEXTPROC \
177    TFTP \
178    TIMED \
179    UNBOUND \
180    USB \
181    UTMPX \
182    VI \
183    VT \
184    WIRELESS \
185    WPA_SUPPLICANT_EAPOL \
186    ZFS \
187    LOADER_ZFS \
188    ZONEINFO
189
190__DEFAULT_NO_OPTIONS = \
191    BSD_GREP \
192    CLANG_EXTRAS \
193    DTRACE_TESTS \
194    EISA \
195    HESIOD \
196    LIBSOFT \
197    LINT \
198    LOADER_FIREWIRE \
199    LOADER_FORCE_LE \
200    NAND \
201    OFED_EXTRA \
202    OPENLDAP \
203    REPRODUCIBLE_BUILD \
204    RPCBIND_WARMSTART_SUPPORT \
205    SHARED_TOOLCHAIN \
206    SORT_THREADS \
207    SVN \
208    ZONEINFO_LEAPSECONDS_SUPPORT \
209    ZONEINFO_OLD_TIMEZONES_SUPPORT \
210
211
212#
213# Default behaviour of some options depends on the architecture.  Unfortunately
214# this means that we have to test TARGET_ARCH (the buildworld case) as well
215# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
216# used at all in bsd.*.mk, but we have to make an exception here if we want
217# to allow defaults for some things like clang to vary by target architecture.
218# Additional, per-target behavior should be rarely added only after much
219# gnashing of teeth and grinding of gears.
220#
221.if defined(TARGET_ARCH)
222__T=${TARGET_ARCH}
223.else
224__T=${MACHINE_ARCH}
225.endif
226.if defined(TARGET)
227__TT=${TARGET}
228.else
229__TT=${MACHINE}
230.endif
231
232.include <bsd.compiler.mk>
233# If the compiler is not C++11 capable, disable Clang and use GCC instead.
234# This means that architectures that have GCC 4.2 as default can not
235# build Clang without using an external compiler.
236
237.if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
238    ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
239# Clang is enabled, and will be installed as the default /usr/bin/cc.
240__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
241__DEFAULT_YES_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
242__DEFAULT_YES_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
243__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
244.elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
245# If an external compiler that supports C++11 is used as ${CC} and Clang
246# supports the target, then Clang is enabled but GCC is installed as the
247# default /usr/bin/cc.
248__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
249__DEFAULT_YES_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
250__DEFAULT_YES_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
251__DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC LLD
252.else
253# Everything else disables Clang, and uses GCC instead.
254__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
255__DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
256__DEFAULT_NO_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
257__DEFAULT_NO_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
258.endif
259# In-tree binutils/gcc are older versions without modern architecture support.
260.if ${__T} == "aarch64" || ${__T} == "riscv64"
261BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
262__DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
263.else
264__DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
265.endif
266.if ${__T} == "riscv64"
267BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
268BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
269BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
270.endif
271.if ${__T} == "aarch64"
272__DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
273.else
274__DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
275.endif
276.if ${__T} == "aarch64" || ${__T} == "amd64"
277__DEFAULT_YES_OPTIONS+=LLDB
278.else
279__DEFAULT_NO_OPTIONS+=LLDB
280.endif
281# LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
282.if ${__T} == "arm" || ${__T} == "armeb"
283BROKEN_OPTIONS+=LLDB
284.endif
285# Only doing soft float API stuff on armv6
286.if ${__T} != "armv6"
287BROKEN_OPTIONS+=LIBSOFT
288.endif
289# EFI doesn't exist on mips, pc98, powerpc, sparc or riscv.
290.if ${__T:Mmips*} || ${__TT:Mpc98*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || \
291    ${__T:Mriscv*}
292BROKEN_OPTIONS+=EFI
293.endif
294# OFW is only for powerpc and sparc64, exclude others
295.if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == ""
296BROKEN_OPTIONS+=LOADER_OFW
297.endif
298# UBOOT is only for arm, mips and powerpc, exclude others
299.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == ""
300BROKEN_OPTIONS+=LOADER_UBOOT
301.endif
302# GELI and Lua in loader currently cause boot failures on sparc64 and powerpc.
303# Further debugging is required -- probably they are just broken on big
304# endian systems generically (they jump to null pointers or try to read
305# crazy high addresses, which is typical of endianness problems).
306.if ${__T} == "sparc64" || ${__T:Mpowerpc*}
307BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
308.endif
309
310.if ${__T:Mmips64*}
311# profiling won't work on MIPS64 because there is only assembly for o32
312BROKEN_OPTIONS+=PROFILE
313.endif
314.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
315    ${__T} == "powerpc64" || ${__T} == "sparc64"
316__DEFAULT_YES_OPTIONS+=CXGBETOOL
317__DEFAULT_YES_OPTIONS+=MLX5TOOL
318.else
319__DEFAULT_NO_OPTIONS+=CXGBETOOL
320__DEFAULT_NO_OPTIONS+=MLX5TOOL
321.endif
322
323.if ${__T} == "amd64"
324__DEFAULT_YES_OPTIONS+=OFED
325.else
326__DEFAULT_NO_OPTIONS+=OFED
327.endif
328
329.include <bsd.mkopt.mk>
330
331#
332# MK_* options that default to "yes" if the compiler is a C++11 compiler.
333#
334.for var in \
335    LIBCPLUSPLUS
336.if !defined(MK_${var})
337.if ${COMPILER_FEATURES:Mc++11}
338.if defined(WITHOUT_${var})
339MK_${var}:=	no
340.else
341MK_${var}:=	yes
342.endif
343.else
344.if defined(WITH_${var})
345MK_${var}:=	yes
346.else
347MK_${var}:=	no
348.endif
349.endif
350.endif
351.endfor
352
353#
354# Force some options off if their dependencies are off.
355# Order is somewhat important.
356#
357.if ${MK_CAPSICUM} == "no"
358MK_CASPER:=	no
359.endif
360
361.if ${MK_LIBPTHREAD} == "no"
362MK_LIBTHR:=	no
363.endif
364
365.if ${MK_LDNS} == "no"
366MK_LDNS_UTILS:=	no
367MK_UNBOUND:= no
368.endif
369
370.if ${MK_SOURCELESS} == "no"
371MK_SOURCELESS_HOST:=	no
372MK_SOURCELESS_UCODE:= no
373.endif
374
375.if ${MK_CDDL} == "no"
376MK_ZFS:=	no
377MK_LOADER_ZFS:=	no
378MK_CTF:=	no
379.endif
380
381.if ${MK_CRYPT} == "no"
382MK_OPENSSL:=	no
383MK_OPENSSH:=	no
384MK_KERBEROS:=	no
385.endif
386
387.if ${MK_CXX} == "no"
388MK_CLANG:=	no
389MK_GROFF:=	no
390MK_GNUCXX:=	no
391.endif
392
393.if ${MK_DIALOG} == "no"
394MK_BSDINSTALL:=	no
395.endif
396
397.if ${MK_MAIL} == "no"
398MK_MAILWRAPPER:= no
399MK_SENDMAIL:=	no
400MK_DMAGENT:=	no
401.endif
402
403.if ${MK_NETGRAPH} == "no"
404MK_ATM:=	no
405MK_BLUETOOTH:=	no
406.endif
407
408.if ${MK_NLS} == "no"
409MK_NLS_CATALOGS:= no
410.endif
411
412.if ${MK_OPENSSL} == "no"
413MK_OPENSSH:=	no
414MK_KERBEROS:=	no
415.endif
416
417.if ${MK_OFED} == "no"
418MK_OFED_EXTRA:=	no
419.endif
420
421.if ${MK_PF} == "no"
422MK_AUTHPF:=	no
423.endif
424
425.if ${MK_TESTS} == "no"
426MK_DTRACE_TESTS:= no
427.endif
428
429.if ${MK_TEXTPROC} == "no"
430MK_GROFF:=	no
431.endif
432
433.if ${MK_ZONEINFO} == "no"
434MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
435MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no
436.endif
437
438.if ${MK_CROSS_COMPILER} == "no"
439MK_BINUTILS_BOOTSTRAP:= no
440MK_CLANG_BOOTSTRAP:= no
441MK_ELFTOOLCHAIN_BOOTSTRAP:= no
442MK_GCC_BOOTSTRAP:= no
443MK_LLD_BOOTSTRAP:= no
444.endif
445
446.if ${MK_META_MODE} == "yes"
447MK_SYSTEM_COMPILER:= no
448.endif
449
450.if ${MK_TOOLCHAIN} == "no"
451MK_BINUTILS:=	no
452MK_CLANG:=	no
453MK_GCC:=	no
454MK_GDB:=	no
455MK_INCLUDES:=	no
456MK_LLD:=	no
457MK_LLDB:=	no
458.endif
459
460.if ${MK_CLANG} == "no"
461MK_CLANG_EXTRAS:= no
462MK_CLANG_FULL:= no
463.endif
464
465#
466# MK_* options whose default value depends on another option.
467#
468.for vv in \
469    GSSAPI/KERBEROS \
470    MAN_UTILS/MAN
471.if defined(WITH_${vv:H})
472MK_${vv:H}:=	yes
473.elif defined(WITHOUT_${vv:H})
474MK_${vv:H}:=	no
475.else
476MK_${vv:H}:=	${MK_${vv:T}}
477.endif
478.endfor
479
480#
481# Set defaults for the MK_*_SUPPORT variables.
482#
483
484#
485# MK_*_SUPPORT options which default to "yes" unless their corresponding
486# MK_* variable is set to "no".
487#
488.for var in \
489    BLACKLIST \
490    BZIP2 \
491    GNU \
492    INET \
493    INET6 \
494    KERBEROS \
495    KVM \
496    NETGRAPH \
497    PAM \
498    TESTS \
499    WIRELESS
500.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
501MK_${var}_SUPPORT:= no
502.else
503MK_${var}_SUPPORT:= yes
504.endif
505.endfor
506
507.if !${COMPILER_FEATURES:Mc++11}
508MK_LLDB:=	no
509.endif
510
511# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
512# while in theory we could build it with that, we don't want to do
513# that since it creates too much confusion for too little gain.
514# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
515#      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
516#      and to support 'make delete-old' when supplying an external toolchain.
517.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
518MK_GNUCXX:=no
519MK_GCC:=no
520.endif
521
522.endif #  !target(__<src.opts.mk>__)
523