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