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