]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
Finish removal of groff
[FreeBSD/FreeBSD.git] / share / mk / src.opts.mk
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.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 the src 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     EFI \
87     ELFTOOLCHAIN_BOOTSTRAP \
88     EXAMPLES \
89     FDT \
90     FILE \
91     FINGER \
92     FLOPPY \
93     FMTREE \
94     FORTH \
95     FP_LIBC \
96     FREEBSD_UPDATE \
97     FTP \
98     GAMES \
99     GCOV \
100     GDB \
101     GNU_DIFF \
102     GNU_GREP \
103     GPIO \
104     GPL_DTC \
105     HAST \
106     HTML \
107     HYPERV \
108     ICONV \
109     INET \
110     INET6 \
111     INETD \
112     IPFILTER \
113     IPFW \
114     ISCSI \
115     JAIL \
116     KDUMP \
117     KVM \
118     LDNS \
119     LDNS_UTILS \
120     LEGACY_CONSOLE \
121     LIB32 \
122     LIBPTHREAD \
123     LIBTHR \
124     LOCALES \
125     LOCATE \
126     LPR \
127     LS_COLORS \
128     LZMA_SUPPORT \
129     MAIL \
130     MAILWRAPPER \
131     MAKE \
132     NDIS \
133     NETCAT \
134     NETGRAPH \
135     NLS_CATALOGS \
136     NS_CACHING \
137     NTP \
138     OPENSSL \
139     PAM \
140     PC_SYSINSTALL \
141     PF \
142     PKGBOOTSTRAP \
143     PMC \
144     PORTSNAP \
145     PPP \
146     QUOTAS \
147     RADIUS_SUPPORT \
148     RCMDS \
149     RBOOTD \
150     RESCUE \
151     ROUTED \
152     SENDMAIL \
153     SETUID_LOGIN \
154     SHAREDOCS \
155     SOURCELESS \
156     SOURCELESS_HOST \
157     SOURCELESS_UCODE \
158     SVNLITE \
159     SYSCONS \
160     SYSTEM_COMPILER \
161     TALK \
162     TCP_WRAPPERS \
163     TCSH \
164     TELNET \
165     TESTS \
166     TEXTPROC \
167     TFTP \
168     TIMED \
169     UNBOUND \
170     USB \
171     UTMPX \
172     VI \
173     VT \
174     WIRELESS \
175     WPA_SUPPLICANT_EAPOL \
176     ZFS \
177     ZONEINFO
178
179 __DEFAULT_NO_OPTIONS = \
180     BSD_GREP \
181     CLANG_EXTRAS \
182     DTRACE_TESTS \
183     GNU_GREP_COMPAT \
184     HESIOD \
185     LIBSOFT \
186     NAND \
187     OFED \
188     OPENLDAP \
189     REPRODUCIBLE_BUILD \
190     RPCBIND_WARMSTART_SUPPORT \
191     SHARED_TOOLCHAIN \
192     SORT_THREADS \
193     SVN \
194
195
196 #
197 # Default behaviour of some options depends on the architecture.  Unfortunately
198 # this means that we have to test TARGET_ARCH (the buildworld case) as well
199 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
200 # used at all in bsd.*.mk, but we have to make an exception here if we want
201 # to allow defaults for some things like clang to vary by target architecture.
202 # Additional, per-target behavior should be rarely added only after much
203 # gnashing of teeth and grinding of gears.
204 #
205 .if defined(TARGET_ARCH)
206 __T=${TARGET_ARCH}
207 .else
208 __T=${MACHINE_ARCH}
209 .endif
210 .if defined(TARGET)
211 __TT=${TARGET}
212 .else
213 __TT=${MACHINE}
214 .endif
215
216 .include <bsd.compiler.mk>
217 # If the compiler is not C++11 capable, disable Clang and use GCC instead.
218 # This means that architectures that have GCC 4.2 as default can not
219 # build Clang without using an external compiler.
220
221 .if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
222     ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
223 # Clang is enabled, and will be installed as the default /usr/bin/cc.
224 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
225 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
226 .elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
227 # If an external compiler that supports C++11 is used as ${CC} and Clang
228 # supports the target, then Clang is enabled but GCC is installed as the
229 # default /usr/bin/cc.
230 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
231 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC LLD
232 .else
233 # Everything else disables Clang, and uses GCC instead.
234 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
235 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
236 .endif
237 # In-tree binutils/gcc are older versions without modern architecture support.
238 .if ${__T} == "aarch64" || ${__T:Mriscv*} != ""
239 BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
240 .endif
241 .if ${__T:Mriscv*} != ""
242 BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
243 BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
244 BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
245 .endif
246 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
247     ${__T:Mriscv*} != ""
248 __DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
249 .else
250 __DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
251 .endif
252 .if ${__T} == "aarch64"
253 __DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
254 .else
255 __DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
256 .endif
257 .if ${__T} == "aarch64" || ${__T} == "amd64"
258 __DEFAULT_YES_OPTIONS+=LLDB
259 .else
260 __DEFAULT_NO_OPTIONS+=LLDB
261 .endif
262 # LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
263 .if ${__T} == "arm" || ${__T} == "armeb"
264 BROKEN_OPTIONS+=LLDB
265 .endif
266 # GDB in base is generally less functional than GDB in ports.  Ports GDB
267 # does not yet contain kernel support for arm, and sparc64 kernel support
268 # has not been tested.
269 .if ${__T:Marm*} != "" || ${__T} == "sparc64"
270 __DEFAULT_NO_OPTIONS+=GDB_LIBEXEC
271 .else
272 __DEFAULT_YES_OPTIONS+=GDB_LIBEXEC
273 .endif
274 # Only doing soft float API stuff on armv6
275 .if ${__T} != "armv6"
276 BROKEN_OPTIONS+=LIBSOFT
277 .endif
278 .if ${__T:Mmips*}
279 BROKEN_OPTIONS+=SSP
280 .endif
281 .if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*}
282 BROKEN_OPTIONS+=EFI
283 .endif
284
285 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
286     ${__T} == "powerpc64" || ${__T} == "sparc64"
287 __DEFAULT_YES_OPTIONS+=CXGBETOOL
288 .else
289 __DEFAULT_NO_OPTIONS+=CXGBETOOL
290 .endif
291
292 .include <bsd.mkopt.mk>
293
294 #
295 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
296 #
297 .for var in \
298     LIBCPLUSPLUS
299 .if !defined(MK_${var})
300 .if ${COMPILER_FEATURES:Mc++11}
301 .if defined(WITHOUT_${var})
302 MK_${var}:=     no
303 .else
304 MK_${var}:=     yes
305 .endif
306 .else
307 .if defined(WITH_${var})
308 MK_${var}:=     yes
309 .else
310 MK_${var}:=     no
311 .endif
312 .endif
313 .endif
314 .endfor
315
316 #
317 # Force some options off if their dependencies are off.
318 # Order is somewhat important.
319 #
320 .if !${COMPILER_FEATURES:Mc++11}
321 MK_LLVM_LIBUNWIND:=     no
322 .endif
323
324 .if ${MK_BINUTILS} == "no"
325 MK_GDB:=        no
326 .endif
327
328 .if ${MK_CAPSICUM} == "no"
329 MK_CASPER:=     no
330 .endif
331
332 .if ${MK_LIBPTHREAD} == "no"
333 MK_LIBTHR:=     no
334 .endif
335
336 .if ${MK_LDNS} == "no"
337 MK_LDNS_UTILS:= no
338 MK_UNBOUND:= no
339 .endif
340
341 .if ${MK_SOURCELESS} == "no"
342 MK_SOURCELESS_HOST:=    no
343 MK_SOURCELESS_UCODE:= no
344 .endif
345
346 .if ${MK_CDDL} == "no"
347 MK_ZFS:=        no
348 MK_CTF:=        no
349 .endif
350
351 .if ${MK_CRYPT} == "no"
352 MK_OPENSSL:=    no
353 MK_OPENSSH:=    no
354 MK_KERBEROS:=   no
355 .endif
356
357 .if ${MK_CXX} == "no"
358 MK_CLANG:=      no
359 MK_GNUCXX:=     no
360 MK_TESTS:=      no
361 .endif
362
363 .if ${MK_DIALOG} == "no"
364 MK_BSDINSTALL:= no
365 .endif
366
367 .if ${MK_MAIL} == "no"
368 MK_MAILWRAPPER:= no
369 MK_SENDMAIL:=   no
370 MK_DMAGENT:=    no
371 .endif
372
373 .if ${MK_NETGRAPH} == "no"
374 MK_ATM:=        no
375 MK_BLUETOOTH:=  no
376 .endif
377
378 .if ${MK_OPENSSL} == "no"
379 MK_OPENSSH:=    no
380 MK_KERBEROS:=   no
381 .endif
382
383 .if ${MK_PF} == "no"
384 MK_AUTHPF:=     no
385 .endif
386
387 .if ${MK_TESTS} == "no"
388 MK_DTRACE_TESTS:= no
389 .endif
390
391 .if ${MK_CROSS_COMPILER} == "no"
392 MK_BINUTILS_BOOTSTRAP:= no
393 MK_CLANG_BOOTSTRAP:= no
394 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
395 MK_GCC_BOOTSTRAP:= no
396 .endif
397
398 .if ${MK_TOOLCHAIN} == "no"
399 MK_BINUTILS:=   no
400 MK_CLANG:=      no
401 MK_GCC:=        no
402 MK_GDB:=        no
403 MK_INCLUDES:=   no
404 MK_LLD:=        no
405 MK_LLDB:=       no
406 .endif
407
408 .if ${MK_CLANG} == "no"
409 MK_CLANG_EXTRAS:= no
410 MK_CLANG_FULL:= no
411 .endif
412
413 #
414 # MK_* options whose default value depends on another option.
415 #
416 .for vv in \
417     GSSAPI/KERBEROS \
418     MAN_UTILS/MAN
419 .if defined(WITH_${vv:H})
420 MK_${vv:H}:=    yes
421 .elif defined(WITHOUT_${vv:H})
422 MK_${vv:H}:=    no
423 .else
424 MK_${vv:H}:=    ${MK_${vv:T}}
425 .endif
426 .endfor
427
428 #
429 # Set defaults for the MK_*_SUPPORT variables.
430 #
431
432 #
433 # MK_*_SUPPORT options which default to "yes" unless their corresponding
434 # MK_* variable is set to "no".
435 #
436 .for var in \
437     BLACKLIST \
438     BZIP2 \
439     INET \
440     INET6 \
441     KERBEROS \
442     KVM \
443     NETGRAPH \
444     PAM \
445     TESTS \
446     WIRELESS
447 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
448 MK_${var}_SUPPORT:= no
449 .else
450 MK_${var}_SUPPORT:= yes
451 .endif
452 .endfor
453
454 .if !${COMPILER_FEATURES:Mc++11}
455 MK_LLDB:=       no
456 .endif
457
458 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
459 # while in theory we could build it with that, we don't want to do
460 # that since it creates too much confusion for too little gain.
461 # XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
462 #      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
463 #      and to support 'make delete-old' when supplying an external toolchain.
464 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
465 MK_GNUCXX:=no
466 MK_GCC:=no
467 .endif
468
469 .endif #  !target(__<src.opts.mk>__)