src.opts.mk revision 346333
1# $FreeBSD: stable/11/share/mk/src.opts.mk 346333 2019-04-17 20:16:48Z dim $
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    LLVM_COV \
129    LOADER_GELI \
130    LOADER_LUA \
131    LOADER_OFW \
132    LOADER_UBOOT \
133    LOCALES \
134    LOCATE \
135    LPR \
136    LS_COLORS \
137    LZMA_SUPPORT \
138    MAIL \
139    MAILWRAPPER \
140    MAKE \
141    MANDOCDB \
142    NDIS \
143    NETCAT \
144    NETGRAPH \
145    NLS_CATALOGS \
146    NS_CACHING \
147    NTP \
148    OPENSSL \
149    PAM \
150    PC_SYSINSTALL \
151    PF \
152    PKGBOOTSTRAP \
153    PMC \
154    PORTSNAP \
155    PPP \
156    QUOTAS \
157    RADIUS_SUPPORT \
158    RCMDS \
159    RBOOTD \
160    RCS \
161    RESCUE \
162    ROUTED \
163    SENDMAIL \
164    SETUID_LOGIN \
165    SHAREDOCS \
166    SOURCELESS \
167    SOURCELESS_HOST \
168    SOURCELESS_UCODE \
169    SVNLITE \
170    SYSCONS \
171    SYSTEM_COMPILER \
172    TALK \
173    TCP_WRAPPERS \
174    TCSH \
175    TELNET \
176    TESTS \
177    TEXTPROC \
178    TFTP \
179    TIMED \
180    UNBOUND \
181    USB \
182    UTMPX \
183    VI \
184    VT \
185    WIRELESS \
186    WPA_SUPPLICANT_EAPOL \
187    ZFS \
188    LOADER_ZFS \
189    ZONEINFO
190
191__DEFAULT_NO_OPTIONS = \
192    BSD_GREP \
193    CLANG_EXTRAS \
194    DTRACE_TESTS \
195    EISA \
196    HESIOD \
197    LIBSOFT \
198    LINT \
199    LOADER_FIREWIRE \
200    LOADER_FORCE_LE \
201    NAND \
202    OFED_EXTRA \
203    OPENLDAP \
204    REPRODUCIBLE_BUILD \
205    RPCBIND_WARMSTART_SUPPORT \
206    SHARED_TOOLCHAIN \
207    SORT_THREADS \
208    SVN \
209    ZONEINFO_LEAPSECONDS_SUPPORT \
210    ZONEINFO_OLD_TIMEZONES_SUPPORT \
211
212
213#
214# Default behaviour of some options depends on the architecture.  Unfortunately
215# this means that we have to test TARGET_ARCH (the buildworld case) as well
216# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
217# used at all in bsd.*.mk, but we have to make an exception here if we want
218# to allow defaults for some things like clang to vary by target architecture.
219# Additional, per-target behavior should be rarely added only after much
220# gnashing of teeth and grinding of gears.
221#
222.if defined(TARGET_ARCH)
223__T=${TARGET_ARCH}
224.else
225__T=${MACHINE_ARCH}
226.endif
227.if defined(TARGET)
228__TT=${TARGET}
229.else
230__TT=${MACHINE}
231.endif
232
233__DEFAULT_NO_OPTIONS+=LLVM_TARGET_BPF
234
235.include <bsd.compiler.mk>
236# If the compiler is not C++11 capable, disable Clang and use GCC instead.
237# This means that architectures that have GCC 4.2 as default can not
238# build Clang without using an external compiler.
239
240.if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
241    ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
242# Clang is enabled, and will be installed as the default /usr/bin/cc.
243__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
244__DEFAULT_YES_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
245__DEFAULT_YES_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
246__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
247.elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
248# If an external compiler that supports C++11 is used as ${CC} and Clang
249# supports the target, then Clang is enabled but GCC is installed as the
250# default /usr/bin/cc.
251__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
252__DEFAULT_YES_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
253__DEFAULT_YES_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
254__DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC LLD
255.else
256# Everything else disables Clang, and uses GCC instead.
257__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
258__DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
259__DEFAULT_NO_OPTIONS+=LLVM_TARGET_AARCH64 LLVM_TARGET_ARM LLVM_TARGET_MIPS
260__DEFAULT_NO_OPTIONS+=LLVM_TARGET_POWERPC LLVM_TARGET_SPARC LLVM_TARGET_X86
261.endif
262__DEFAULT_NO_OPTIONS+=LLVM_TARGET_BPF
263# In-tree binutils/gcc are older versions without modern architecture support.
264.if ${__T} == "aarch64" || ${__T} == "riscv64"
265BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
266.endif
267.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
268    ${__T:Mriscv*} != "" || ${__TT} == "mips"
269__DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
270.else
271__DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
272.endif
273.if ${__T} == "riscv64"
274BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
275BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
276BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
277.endif
278.if ${__T} == "aarch64"
279__DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
280.else
281__DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
282.endif
283.if ${__T} == "aarch64" || ${__T} == "amd64"
284__DEFAULT_YES_OPTIONS+=LLDB
285.else
286__DEFAULT_NO_OPTIONS+=LLDB
287.endif
288# LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
289.if ${__T} == "arm" || ${__T} == "armeb"
290BROKEN_OPTIONS+=LLDB
291.endif
292# Only doing soft float API stuff on armv6
293.if ${__T} != "armv6"
294BROKEN_OPTIONS+=LIBSOFT
295.endif
296# EFI doesn't exist on mips, pc98, powerpc, sparc or riscv.
297.if ${__T:Mmips*} || ${__TT:Mpc98*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || \
298    ${__T:Mriscv*}
299BROKEN_OPTIONS+=EFI
300.endif
301# OFW is only for powerpc and sparc64, exclude others
302.if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == ""
303BROKEN_OPTIONS+=LOADER_OFW
304.endif
305# UBOOT is only for arm, mips and powerpc, exclude others
306.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == ""
307BROKEN_OPTIONS+=LOADER_UBOOT
308.endif
309# GELI and Lua in loader currently cause boot failures on sparc64 and powerpc.
310# Further debugging is required -- probably they are just broken on big
311# endian systems generically (they jump to null pointers or try to read
312# crazy high addresses, which is typical of endianness problems).
313.if ${__T} == "sparc64" || ${__T:Mpowerpc*}
314BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
315.endif
316# Both features are untested on pc98, so we'll mark them as disabled just to
317# be safe and make sure we keep pc98 stable.
318.if ${__TT:Mpc98*}
319BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
320.endif
321.if ${__T:Mmips64*}
322# profiling won't work on MIPS64 because there is only assembly for o32
323BROKEN_OPTIONS+=PROFILE
324.endif
325.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
326    ${__T} == "powerpc64" || ${__T} == "sparc64"
327__DEFAULT_YES_OPTIONS+=CXGBETOOL
328__DEFAULT_YES_OPTIONS+=MLX5TOOL
329.else
330__DEFAULT_NO_OPTIONS+=CXGBETOOL
331__DEFAULT_NO_OPTIONS+=MLX5TOOL
332.endif
333
334.if ${__T} == "amd64"
335__DEFAULT_YES_OPTIONS+=OFED
336.else
337__DEFAULT_NO_OPTIONS+=OFED
338.endif
339
340.if ${COMPILER_FEATURES:Mc++11} && (${__T} == "amd64" || ${__T} == "i386")
341__DEFAULT_YES_OPTIONS+=OPENMP
342.else
343__DEFAULT_NO_OPTIONS+=OPENMP
344.endif
345
346.include <bsd.mkopt.mk>
347
348#
349# MK_* options that default to "yes" if the compiler is a C++11 compiler.
350#
351.for var in \
352    LIBCPLUSPLUS
353.if !defined(MK_${var})
354.if ${COMPILER_FEATURES:Mc++11}
355.if defined(WITHOUT_${var})
356MK_${var}:=	no
357.else
358MK_${var}:=	yes
359.endif
360.else
361.if defined(WITH_${var})
362MK_${var}:=	yes
363.else
364MK_${var}:=	no
365.endif
366.endif
367.endif
368.endfor
369
370#
371# Force some options off if their dependencies are off.
372# Order is somewhat important.
373#
374.if !${COMPILER_FEATURES:Mc++11}
375MK_LLVM_LIBUNWIND:=	no
376.endif
377
378.if ${MK_CAPSICUM} == "no"
379MK_CASPER:=	no
380.endif
381
382.if ${MK_LIBPTHREAD} == "no"
383MK_LIBTHR:=	no
384.endif
385
386.if ${MK_LDNS} == "no"
387MK_LDNS_UTILS:=	no
388MK_UNBOUND:= no
389.endif
390
391.if ${MK_SOURCELESS} == "no"
392MK_SOURCELESS_HOST:=	no
393MK_SOURCELESS_UCODE:= no
394.endif
395
396.if ${MK_CDDL} == "no"
397MK_ZFS:=	no
398MK_LOADER_ZFS:=	no
399MK_CTF:=	no
400.endif
401
402.if ${MK_CRYPT} == "no"
403MK_OPENSSL:=	no
404MK_OPENSSH:=	no
405MK_KERBEROS:=	no
406.endif
407
408.if ${MK_CXX} == "no"
409MK_CLANG:=	no
410MK_GROFF:=	no
411MK_GNUCXX:=	no
412.endif
413
414.if ${MK_DIALOG} == "no"
415MK_BSDINSTALL:=	no
416.endif
417
418.if ${MK_MAIL} == "no"
419MK_MAILWRAPPER:= no
420MK_SENDMAIL:=	no
421MK_DMAGENT:=	no
422.endif
423
424.if ${MK_NETGRAPH} == "no"
425MK_ATM:=	no
426MK_BLUETOOTH:=	no
427.endif
428
429.if ${MK_NLS} == "no"
430MK_NLS_CATALOGS:= no
431.endif
432
433.if ${MK_OPENSSL} == "no"
434MK_OPENSSH:=	no
435MK_KERBEROS:=	no
436.endif
437
438.if ${MK_OFED} == "no"
439MK_OFED_EXTRA:=	no
440.endif
441
442.if ${MK_PF} == "no"
443MK_AUTHPF:=	no
444.endif
445
446.if ${MK_TESTS} == "no"
447MK_DTRACE_TESTS:= no
448.endif
449
450.if ${MK_TEXTPROC} == "no"
451MK_GROFF:=	no
452.endif
453
454.if ${MK_ZONEINFO} == "no"
455MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
456MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no
457.endif
458
459.if ${MK_CROSS_COMPILER} == "no"
460MK_BINUTILS_BOOTSTRAP:= no
461MK_CLANG_BOOTSTRAP:= no
462MK_ELFTOOLCHAIN_BOOTSTRAP:= no
463MK_GCC_BOOTSTRAP:= no
464MK_LLD_BOOTSTRAP:= no
465.endif
466
467.if ${MK_META_MODE} == "yes"
468MK_SYSTEM_COMPILER:= no
469.endif
470
471.if ${MK_TOOLCHAIN} == "no"
472MK_BINUTILS:=	no
473MK_CLANG:=	no
474MK_GCC:=	no
475MK_GDB:=	no
476MK_INCLUDES:=	no
477MK_LLD:=	no
478MK_LLDB:=	no
479.endif
480
481.if ${MK_CLANG} == "no"
482MK_CLANG_EXTRAS:= no
483MK_CLANG_FULL:= no
484MK_LLVM_COV:= no
485.endif
486
487#
488# MK_* options whose default value depends on another option.
489#
490.for vv in \
491    GSSAPI/KERBEROS \
492    MAN_UTILS/MAN
493.if defined(WITH_${vv:H})
494MK_${vv:H}:=	yes
495.elif defined(WITHOUT_${vv:H})
496MK_${vv:H}:=	no
497.else
498MK_${vv:H}:=	${MK_${vv:T}}
499.endif
500.endfor
501
502#
503# Set defaults for the MK_*_SUPPORT variables.
504#
505
506#
507# MK_*_SUPPORT options which default to "yes" unless their corresponding
508# MK_* variable is set to "no".
509#
510.for var in \
511    BLACKLIST \
512    BZIP2 \
513    GNU \
514    INET \
515    INET6 \
516    KERBEROS \
517    KVM \
518    NETGRAPH \
519    PAM \
520    TESTS \
521    WIRELESS
522.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
523MK_${var}_SUPPORT:= no
524.else
525MK_${var}_SUPPORT:= yes
526.endif
527.endfor
528
529.if !${COMPILER_FEATURES:Mc++11}
530MK_LLDB:=	no
531.endif
532
533# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
534# while in theory we could build it with that, we don't want to do
535# that since it creates too much confusion for too little gain.
536# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
537#      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
538#      and to support 'make delete-old' when supplying an external toolchain.
539.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
540MK_GNUCXX:=no
541MK_GCC:=no
542.endif
543
544.endif #  !target(__<src.opts.mk>__)
545