]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
bsdgrep: add BSD_GREP_FASTMATCH knob for built-in fastmatch
[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     GNU_DIFF \
101     GNU_GREP \
102     GNU_GREP_COMPAT \
103     GPIO \
104     GPL_DTC \
105     GROFF \
106     HAST \
107     HTML \
108     HYPERV \
109     ICONV \
110     INET \
111     INET6 \
112     INETD \
113     IPFILTER \
114     IPFW \
115     ISCSI \
116     JAIL \
117     KDUMP \
118     KVM \
119     LDNS \
120     LDNS_UTILS \
121     LEGACY_CONSOLE \
122     LIB32 \
123     LIBPTHREAD \
124     LIBTHR \
125     LOCALES \
126     LOCATE \
127     LPR \
128     LS_COLORS \
129     LZMA_SUPPORT \
130     MAIL \
131     MAILWRAPPER \
132     MAKE \
133     NDIS \
134     NETCAT \
135     NETGRAPH \
136     NLS_CATALOGS \
137     NS_CACHING \
138     NTP \
139     OPENSSL \
140     PAM \
141     PC_SYSINSTALL \
142     PF \
143     PKGBOOTSTRAP \
144     PMC \
145     PORTSNAP \
146     PPP \
147     QUOTAS \
148     RADIUS_SUPPORT \
149     RCMDS \
150     RBOOTD \
151     RESCUE \
152     ROUTED \
153     SENDMAIL \
154     SETUID_LOGIN \
155     SHAREDOCS \
156     SOURCELESS \
157     SOURCELESS_HOST \
158     SOURCELESS_UCODE \
159     SVNLITE \
160     SYSCONS \
161     SYSTEM_COMPILER \
162     TALK \
163     TCP_WRAPPERS \
164     TCSH \
165     TELNET \
166     TESTS \
167     TEXTPROC \
168     TFTP \
169     TIMED \
170     UNBOUND \
171     USB \
172     UTMPX \
173     VI \
174     VT \
175     WIRELESS \
176     WPA_SUPPLICANT_EAPOL \
177     ZFS \
178     ZONEINFO
179
180 __DEFAULT_NO_OPTIONS = \
181     BSD_GREP \
182     CLANG_EXTRAS \
183     DTRACE_TESTS \
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_YES_OPTIONS+=GDB
271 .else
272 __DEFAULT_NO_OPTIONS+=GDB
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_LLD} == "no"
342 MK_LLD_IS_LD:=  no
343 .endif
344
345 # LLD requires LLVM libraries, and we do not yet compare in-tree and host LLD
346 # versions to avoid building it if they are identical.
347 .if ${MK_LLD_IS_LD} != "no"
348 MK_SYSTEM_COMPILER:=    no
349 .endif
350
351 .if ${MK_SOURCELESS} == "no"
352 MK_SOURCELESS_HOST:=    no
353 MK_SOURCELESS_UCODE:= no
354 .endif
355
356 .if ${MK_CDDL} == "no"
357 MK_ZFS:=        no
358 MK_CTF:=        no
359 .endif
360
361 .if ${MK_CRYPT} == "no"
362 MK_OPENSSL:=    no
363 MK_OPENSSH:=    no
364 MK_KERBEROS:=   no
365 .endif
366
367 .if ${MK_CXX} == "no"
368 MK_CLANG:=      no
369 MK_GROFF:=      no
370 MK_GNUCXX:=     no
371 MK_TESTS:=      no
372 .endif
373
374 .if ${MK_DIALOG} == "no"
375 MK_BSDINSTALL:= no
376 .endif
377
378 .if ${MK_MAIL} == "no"
379 MK_MAILWRAPPER:= no
380 MK_SENDMAIL:=   no
381 MK_DMAGENT:=    no
382 .endif
383
384 .if ${MK_NETGRAPH} == "no"
385 MK_ATM:=        no
386 MK_BLUETOOTH:=  no
387 .endif
388
389 .if ${MK_OPENSSL} == "no"
390 MK_OPENSSH:=    no
391 MK_KERBEROS:=   no
392 .endif
393
394 .if ${MK_PF} == "no"
395 MK_AUTHPF:=     no
396 .endif
397
398 .if ${MK_TESTS} == "no"
399 MK_DTRACE_TESTS:= no
400 .endif
401
402 .if ${MK_TEXTPROC} == "no"
403 MK_GROFF:=      no
404 .endif
405
406 .if ${MK_CROSS_COMPILER} == "no"
407 MK_BINUTILS_BOOTSTRAP:= no
408 MK_CLANG_BOOTSTRAP:= no
409 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
410 MK_GCC_BOOTSTRAP:= no
411 .endif
412
413 .if ${MK_TOOLCHAIN} == "no"
414 MK_BINUTILS:=   no
415 MK_CLANG:=      no
416 MK_GCC:=        no
417 MK_GDB:=        no
418 MK_INCLUDES:=   no
419 MK_LLD:=        no
420 MK_LLDB:=       no
421 .endif
422
423 .if ${MK_CLANG} == "no"
424 MK_CLANG_EXTRAS:= no
425 MK_CLANG_FULL:= no
426 .endif
427
428 #
429 # MK_* options whose default value depends on another option.
430 #
431 .for vv in \
432     GSSAPI/KERBEROS \
433     MAN_UTILS/MAN
434 .if defined(WITH_${vv:H})
435 MK_${vv:H}:=    yes
436 .elif defined(WITHOUT_${vv:H})
437 MK_${vv:H}:=    no
438 .else
439 MK_${vv:H}:=    ${MK_${vv:T}}
440 .endif
441 .endfor
442
443 #
444 # Set defaults for the MK_*_SUPPORT variables.
445 #
446
447 #
448 # MK_*_SUPPORT options which default to "yes" unless their corresponding
449 # MK_* variable is set to "no".
450 #
451 .for var in \
452     BLACKLIST \
453     BZIP2 \
454     INET \
455     INET6 \
456     KERBEROS \
457     KVM \
458     NETGRAPH \
459     PAM \
460     TESTS \
461     WIRELESS
462 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
463 MK_${var}_SUPPORT:= no
464 .else
465 MK_${var}_SUPPORT:= yes
466 .endif
467 .endfor
468
469 .if !${COMPILER_FEATURES:Mc++11}
470 MK_LLDB:=       no
471 .endif
472
473 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
474 # while in theory we could build it with that, we don't want to do
475 # that since it creates too much confusion for too little gain.
476 # XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
477 #      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
478 #      and to support 'make delete-old' when supplying an external toolchain.
479 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
480 MK_GNUCXX:=no
481 MK_GCC:=no
482 .endif
483
484 .endif #  !target(__<src.opts.mk>__)