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