xref: /freebsd/share/mk/src.opts.mk (revision 6186fd1857626de0f7cb1a9e4dff19082f9ebb11)
1# $FreeBSD$
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.srcpot.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    BINUTILS \
56    BINUTILS_BOOTSTRAP \
57    BLUETOOTH \
58    BOOT \
59    BSD_CPIO \
60    BSNMP \
61    BZIP2 \
62    CALENDAR \
63    CAPSICUM \
64    CASPER \
65    CDDL \
66    CPP \
67    CROSS_COMPILER \
68    CRYPT \
69    CTM \
70    CUSE \
71    CXX \
72    DICT \
73    DMAGENT \
74    DYNAMICROOT \
75    ED_CRYPTO \
76    EXAMPLES \
77    FDT \
78    FLOPPY \
79    FMTREE \
80    FORTH \
81    FP_LIBC \
82    FREEBSD_UPDATE \
83    GAMES \
84    GCOV \
85    GDB \
86    GNU \
87    GNU_GREP_COMPAT \
88    GPIB \
89    GPIO \
90    GPL_DTC \
91    GROFF \
92    HTML \
93    ICONV \
94    INET \
95    INET6 \
96    IPFILTER \
97    IPFW \
98    JAIL \
99    KDUMP \
100    KVM \
101    LDNS \
102    LDNS_UTILS \
103    LEGACY_CONSOLE \
104    LIB32 \
105    LIBPTHREAD \
106    LIBTHR \
107    LOCALES \
108    LOCATE \
109    LPR \
110    LS_COLORS \
111    LZMA_SUPPORT \
112    MAIL \
113    MAILWRAPPER \
114    MAKE \
115    NDIS \
116    NETCAT \
117    NETGRAPH \
118    NLS_CATALOGS \
119    NS_CACHING \
120    NTP \
121    OPENSSL \
122    PAM \
123    PC_SYSINSTALL \
124    PF \
125    PKGBOOTSTRAP \
126    PMC \
127    PORTSNAP \
128    PPP \
129    QUOTAS \
130    RCMDS \
131    RCS \
132    RESCUE \
133    ROUTED \
134    SENDMAIL \
135    SETUID_LOGIN \
136    SHAREDOCS \
137    SOURCELESS \
138    SOURCELESS_HOST \
139    SOURCELESS_UCODE \
140    SVNLITE \
141    SYSCALL_COMPAT \
142    SYSCONS \
143    SYSINSTALL \
144    TCSH \
145    TELNET \
146    TESTS \
147    TEXTPROC \
148    UNBOUND \
149    USB \
150    UTMPX \
151    VI \
152    VT \
153    WIRELESS \
154    WPA_SUPPLICANT_EAPOL \
155    ZFS \
156    ZONEINFO
157
158__DEFAULT_NO_OPTIONS = \
159    BSD_GREP \
160    CLANG_EXTRAS \
161    EISA \
162    FMAKE \
163    HESIOD \
164    LLDB \
165    NAND \
166    OFED \
167    OPENLDAP \
168    OPENSSH_NONE_CIPHER \
169    SHARED_TOOLCHAIN \
170    SORT_THREADS \
171    SVN \
172    USB_GADGET_EXAMPLES
173
174#
175# Default behaviour of some options depends on the architecture.  Unfortunately
176# this means that we have to test TARGET_ARCH (the buildworld case) as well
177# as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
178# used at all in bsd.*.mk, but we have to make an exception here if we want
179# to allow defaults for some things like clang to vary by target architecture.
180# Additional, per-target behavior should be rarely added only after much
181# gnashing of teeth and grinding of gears.
182#
183.if defined(TARGET_ARCH)
184__T=${TARGET_ARCH}
185.else
186__T=${MACHINE_ARCH}
187.endif
188.if defined(TARGET)
189__TT=${TARGET}
190.else
191__TT=${MACHINE}
192.endif
193# Clang is only for x86, powerpc and little-endian arm right now, by default.
194.if ${__T} == "amd64" || ${__T} == "i386" || ${__T:Mpowerpc*}
195__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL CLANG_BOOTSTRAP
196.elif ${__TT} == "arm" && ${__T:Marm*eb*} == ""
197__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP
198# GCC is unable to build the full clang on arm, disable it by default.
199__DEFAULT_NO_OPTIONS+=CLANG_FULL
200.else
201__DEFAULT_NO_OPTIONS+=CLANG CLANG_FULL CLANG_BOOTSTRAP
202.endif
203# Clang the default system compiler only on little-endian arm and x86.
204.if ${__T} == "amd64" || (${__TT} == "arm" && ${__T:Marm*eb*} == "") || \
205    ${__T} == "i386"
206__DEFAULT_YES_OPTIONS+=CLANG_IS_CC
207__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
208.else
209# If clang is not cc, then build gcc by default
210__DEFAULT_NO_OPTIONS+=CLANG_IS_CC CLANG CLANG_BOOTSTRAP
211__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
212.endif
213
214# HyperV is only available for x86 and amd64.
215.if ${__T} == "amd64" || ${__T} == "i386"
216__DEFAULT_YES_OPTIONS+=HYPERV
217.else
218__DEFAULT_NO_OPTIONS+=HYPERV
219.endif
220
221.include <bsd.mkopt.mk>
222
223#
224# MK_* options that default to "yes" if the compiler is a C++11 compiler.
225#
226.include <bsd.compiler.mk>
227.for var in \
228    LIBCPLUSPLUS
229.if !defined(MK_${var})
230.if ${COMPILER_FEATURES:Mc++11}
231.if defined(WITHOUT_${var})
232MK_${var}:=	no
233.else
234MK_${var}:=	yes
235.endif
236.else
237.if defined(WITH_${var})
238MK_${var}:=	yes
239.else
240MK_${var}:=	no
241.endif
242.endif
243.endif
244.endfor
245
246#
247# Force some options off if their dependencies are off.
248# Order is somewhat important.
249#
250.if ${MK_LIBPTHREAD} == "no"
251MK_LIBTHR:=	no
252.endif
253
254.if ${MK_LDNS} == "no"
255MK_LDNS_UTILS:=	no
256MK_UNBOUND:= no
257.endif
258
259.if ${MK_SOURCELESS} == "no"
260MK_SOURCELESS_HOST:=	no
261MK_SOURCELESS_UCODE:= no
262.endif
263
264.if ${MK_CDDL} == "no"
265MK_ZFS:=	no
266MK_CTF:=	no
267.endif
268
269.if ${MK_CRYPT} == "no"
270MK_OPENSSL:=	no
271MK_OPENSSH:=	no
272MK_KERBEROS:=	no
273.endif
274
275.if ${MK_CXX} == "no"
276MK_CLANG:=	no
277MK_GROFF:=	no
278MK_GNUCXX:=	no
279.endif
280
281.if ${MK_MAIL} == "no"
282MK_MAILWRAPPER:= no
283MK_SENDMAIL:=	no
284MK_DMAGENT:=	no
285.endif
286
287.if ${MK_NETGRAPH} == "no"
288MK_ATM:=	no
289MK_BLUETOOTH:=	no
290.endif
291
292.if ${MK_OPENSSL} == "no"
293MK_OPENSSH:=	no
294MK_KERBEROS:=	no
295.endif
296
297.if ${MK_PF} == "no"
298MK_AUTHPF:=	no
299.endif
300
301.if ${MK_TEXTPROC} == "no"
302MK_GROFF:=	no
303.endif
304
305.if ${MK_CROSS_COMPILER} == "no"
306MK_BINUTILS_BOOTSTRAP:= no
307MK_CLANG_BOOTSTRAP:= no
308MK_GCC_BOOTSTRAP:= no
309.endif
310
311.if ${MK_TOOLCHAIN} == "no"
312MK_BINUTILS:=	no
313MK_CLANG:=	no
314MK_GCC:=	no
315MK_GDB:=	no
316.endif
317
318.if ${MK_CLANG} == "no"
319MK_CLANG_EXTRAS:= no
320MK_CLANG_FULL:= no
321.endif
322
323#
324# Set defaults for the MK_*_SUPPORT variables.
325#
326
327#
328# MK_*_SUPPORT options which default to "yes" unless their corresponding
329# MK_* variable is set to "no".
330#
331.for var in \
332    BZIP2 \
333    GNU \
334    INET \
335    INET6 \
336    KERBEROS \
337    KVM \
338    NETGRAPH \
339    PAM \
340    WIRELESS
341.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
342MK_${var}_SUPPORT:= no
343.else
344MK_${var}_SUPPORT:= yes
345.endif
346.endfor
347
348#
349# MK_* options whose default value depends on another option.
350#
351.for vv in \
352    GSSAPI/KERBEROS \
353    MAN_UTILS/MAN
354.if defined(WITH_${vv:H})
355MK_${vv:H}:=	yes
356.elif defined(WITHOUT_${vv:H})
357MK_${vv:H}:=	no
358.else
359MK_${vv:H}:=	${MK_${vv:T}}
360.endif
361.endfor
362
363.if !${COMPILER_FEATURES:Mc++11}
364MK_LLDB:=	no
365.endif
366
367.endif
368