]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
MFC r336569:
[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 \
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"
260 BROKEN_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"
266 BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
267 BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
268 BROKEN_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"
282 BROKEN_OPTIONS+=LLDB
283 .endif
284 # Only doing soft float API stuff on armv6
285 .if ${__T} != "armv6"
286 BROKEN_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*}
291 BROKEN_OPTIONS+=EFI
292 .endif
293 # GELI isn't supported on !x86
294 .if ${__T} != "i386" && ${__T} != "amd64"
295 BROKEN_OPTIONS+=LOADER_GELI
296 .endif
297 # OFW is only for powerpc and sparc64, exclude others
298 .if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == ""
299 BROKEN_OPTIONS+=LOADER_OFW
300 .endif
301 # UBOOT is only for arm, mips and powerpc, exclude others
302 .if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == ""
303 BROKEN_OPTIONS+=LOADER_UBOOT
304 .endif
305
306 .if ${__T:Mmips64*}
307 # profiling won't work on MIPS64 because there is only assembly for o32
308 BROKEN_OPTIONS+=PROFILE
309 .endif
310 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
311     ${__T} == "powerpc64" || ${__T} == "sparc64"
312 __DEFAULT_YES_OPTIONS+=CXGBETOOL
313 __DEFAULT_YES_OPTIONS+=MLX5TOOL
314 .else
315 __DEFAULT_NO_OPTIONS+=CXGBETOOL
316 __DEFAULT_NO_OPTIONS+=MLX5TOOL
317 .endif
318
319 .include <bsd.mkopt.mk>
320
321 #
322 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
323 #
324 .for var in \
325     LIBCPLUSPLUS
326 .if !defined(MK_${var})
327 .if ${COMPILER_FEATURES:Mc++11}
328 .if defined(WITHOUT_${var})
329 MK_${var}:=     no
330 .else
331 MK_${var}:=     yes
332 .endif
333 .else
334 .if defined(WITH_${var})
335 MK_${var}:=     yes
336 .else
337 MK_${var}:=     no
338 .endif
339 .endif
340 .endif
341 .endfor
342
343 #
344 # Force some options off if their dependencies are off.
345 # Order is somewhat important.
346 #
347 .if ${MK_CAPSICUM} == "no"
348 MK_CASPER:=     no
349 .endif
350
351 .if ${MK_LIBPTHREAD} == "no"
352 MK_LIBTHR:=     no
353 .endif
354
355 .if ${MK_LDNS} == "no"
356 MK_LDNS_UTILS:= no
357 MK_UNBOUND:= no
358 .endif
359
360 .if ${MK_SOURCELESS} == "no"
361 MK_SOURCELESS_HOST:=    no
362 MK_SOURCELESS_UCODE:= no
363 .endif
364
365 .if ${MK_CDDL} == "no"
366 MK_ZFS:=        no
367 MK_CTF:=        no
368 .endif
369
370 .if ${MK_CRYPT} == "no"
371 MK_OPENSSL:=    no
372 MK_OPENSSH:=    no
373 MK_KERBEROS:=   no
374 .endif
375
376 .if ${MK_CXX} == "no"
377 MK_CLANG:=      no
378 MK_GROFF:=      no
379 MK_GNUCXX:=     no
380 .endif
381
382 .if ${MK_DIALOG} == "no"
383 MK_BSDINSTALL:= no
384 .endif
385
386 .if ${MK_MAIL} == "no"
387 MK_MAILWRAPPER:= no
388 MK_SENDMAIL:=   no
389 MK_DMAGENT:=    no
390 .endif
391
392 .if ${MK_NETGRAPH} == "no"
393 MK_ATM:=        no
394 MK_BLUETOOTH:=  no
395 .endif
396
397 .if ${MK_NLS} == "no"
398 MK_NLS_CATALOGS:= no
399 .endif
400
401 .if ${MK_OPENSSL} == "no"
402 MK_OPENSSH:=    no
403 MK_KERBEROS:=   no
404 .endif
405
406 .if ${MK_OFED} == "no"
407 MK_OFED_EXTRA:= no
408 .endif
409
410 .if ${MK_PF} == "no"
411 MK_AUTHPF:=     no
412 .endif
413
414 .if ${MK_TESTS} == "no"
415 MK_DTRACE_TESTS:= no
416 .endif
417
418 .if ${MK_TEXTPROC} == "no"
419 MK_GROFF:=      no
420 .endif
421
422 .if ${MK_ZONEINFO} == "no"
423 MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
424 MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no
425 .endif
426
427 .if ${MK_CROSS_COMPILER} == "no"
428 MK_BINUTILS_BOOTSTRAP:= no
429 MK_CLANG_BOOTSTRAP:= no
430 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
431 MK_GCC_BOOTSTRAP:= no
432 MK_LLD_BOOTSTRAP:= no
433 .endif
434
435 .if ${MK_META_MODE} == "yes"
436 MK_SYSTEM_COMPILER:= no
437 .endif
438
439 .if ${MK_TOOLCHAIN} == "no"
440 MK_BINUTILS:=   no
441 MK_CLANG:=      no
442 MK_GCC:=        no
443 MK_GDB:=        no
444 MK_INCLUDES:=   no
445 MK_LLD:=        no
446 MK_LLDB:=       no
447 .endif
448
449 .if ${MK_CLANG} == "no"
450 MK_CLANG_EXTRAS:= no
451 MK_CLANG_FULL:= no
452 .endif
453
454 #
455 # MK_* options whose default value depends on another option.
456 #
457 .for vv in \
458     GSSAPI/KERBEROS \
459     MAN_UTILS/MAN
460 .if defined(WITH_${vv:H})
461 MK_${vv:H}:=    yes
462 .elif defined(WITHOUT_${vv:H})
463 MK_${vv:H}:=    no
464 .else
465 MK_${vv:H}:=    ${MK_${vv:T}}
466 .endif
467 .endfor
468
469 #
470 # Set defaults for the MK_*_SUPPORT variables.
471 #
472
473 #
474 # MK_*_SUPPORT options which default to "yes" unless their corresponding
475 # MK_* variable is set to "no".
476 #
477 .for var in \
478     BLACKLIST \
479     BZIP2 \
480     GNU \
481     INET \
482     INET6 \
483     KERBEROS \
484     KVM \
485     NETGRAPH \
486     PAM \
487     TESTS \
488     WIRELESS
489 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
490 MK_${var}_SUPPORT:= no
491 .else
492 MK_${var}_SUPPORT:= yes
493 .endif
494 .endfor
495
496 .if !${COMPILER_FEATURES:Mc++11}
497 MK_LLDB:=       no
498 .endif
499
500 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
501 # while in theory we could build it with that, we don't want to do
502 # that since it creates too much confusion for too little gain.
503 # XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
504 #      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
505 #      and to support 'make delete-old' when supplying an external toolchain.
506 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
507 MK_GNUCXX:=no
508 MK_GCC:=no
509 .endif
510
511 .endif #  !target(__<src.opts.mk>__)