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