]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
Merge ^/head r321383 through r322397.
[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     GDB \
101     GNU_DIFF \
102     GNU_GREP \
103     GPIO \
104     HAST \
105     HTML \
106     HYPERV \
107     ICONV \
108     INET \
109     INET6 \
110     INETD \
111     IPFILTER \
112     IPFW \
113     ISCSI \
114     JAIL \
115     KDUMP \
116     KVM \
117     LDNS \
118     LDNS_UTILS \
119     LEGACY_CONSOLE \
120     LIB32 \
121     LIBPTHREAD \
122     LIBTHR \
123     LOCALES \
124     LOCATE \
125     LPR \
126     LS_COLORS \
127     LZMA_SUPPORT \
128     MAIL \
129     MAILWRAPPER \
130     MAKE \
131     NDIS \
132     NETCAT \
133     NETGRAPH \
134     NLS_CATALOGS \
135     NS_CACHING \
136     NTP \
137     OPENSSL \
138     PAM \
139     PC_SYSINSTALL \
140     PF \
141     PKGBOOTSTRAP \
142     PMC \
143     PORTSNAP \
144     PPP \
145     QUOTAS \
146     RADIUS_SUPPORT \
147     RBOOTD \
148     RESCUE \
149     ROUTED \
150     SENDMAIL \
151     SETUID_LOGIN \
152     SHAREDOCS \
153     SOURCELESS \
154     SOURCELESS_HOST \
155     SOURCELESS_UCODE \
156     SVNLITE \
157     SYSCONS \
158     SYSTEM_COMPILER \
159     TALK \
160     TCP_WRAPPERS \
161     TCSH \
162     TELNET \
163     TESTS \
164     TEXTPROC \
165     TFTP \
166     TIMED \
167     UNBOUND \
168     USB \
169     UTMPX \
170     VI \
171     VT \
172     WIRELESS \
173     WPA_SUPPLICANT_EAPOL \
174     ZFS \
175     ZONEINFO
176
177 __DEFAULT_NO_OPTIONS = \
178     BSD_GREP \
179     CLANG_EXTRAS \
180     DTRACE_TESTS \
181     GNU_GREP_COMPAT \
182     HESIOD \
183     LIBSOFT \
184     NAND \
185     OFED \
186     OPENLDAP \
187     RCMDS \
188     REPRODUCIBLE_BUILD \
189     RPCBIND_WARMSTART_SUPPORT \
190     SHARED_TOOLCHAIN \
191     SORT_THREADS \
192     SVN \
193     ZONEINFO_LEAPSECONDS_SUPPORT \
194     ZONEINFO_OLD_TIMEZONES_SUPPORT \
195
196
197 #
198 # Default behaviour of some options depends on the architecture.  Unfortunately
199 # this means that we have to test TARGET_ARCH (the buildworld case) as well
200 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
201 # used at all in bsd.*.mk, but we have to make an exception here if we want
202 # to allow defaults for some things like clang to vary by target architecture.
203 # Additional, per-target behavior should be rarely added only after much
204 # gnashing of teeth and grinding of gears.
205 #
206 .if defined(TARGET_ARCH)
207 __T=${TARGET_ARCH}
208 .else
209 __T=${MACHINE_ARCH}
210 .endif
211 .if defined(TARGET)
212 __TT=${TARGET}
213 .else
214 __TT=${MACHINE}
215 .endif
216
217 .include <bsd.compiler.mk>
218 # If the compiler is not C++11 capable, disable Clang and use GCC instead.
219 # This means that architectures that have GCC 4.2 as default can not
220 # build Clang without using an external compiler.
221
222 .if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
223     ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
224 # Clang is enabled, and will be installed as the default /usr/bin/cc.
225 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
226 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC
227 .elif ${COMPILER_FEATURES:Mc++11} && ${__T:Mriscv*} == "" && ${__T} != "sparc64"
228 # If an external compiler that supports C++11 is used as ${CC} and Clang
229 # supports the target, then Clang is enabled but GCC is installed as the
230 # default /usr/bin/cc.
231 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
232 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC GPL_DTC LLD
233 .else
234 # Everything else disables Clang, and uses GCC instead.
235 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC
236 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
237 .endif
238 # In-tree binutils/gcc are older versions without modern architecture support.
239 .if ${__T} == "aarch64" || ${__T:Mriscv*} != ""
240 BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
241 .endif
242 .if ${__T:Mriscv*} != ""
243 BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
244 BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
245 BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
246 .endif
247 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
248     ${__T:Mriscv*} != ""
249 __DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
250 .else
251 __DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
252 .endif
253 .if ${__T} == "aarch64"
254 __DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
255 .else
256 __DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
257 .endif
258 .if ${__T} == "aarch64" || ${__T} == "amd64"
259 __DEFAULT_YES_OPTIONS+=LLDB
260 .else
261 __DEFAULT_NO_OPTIONS+=LLDB
262 .endif
263 # LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
264 .if ${__T} == "arm" || ${__T} == "armeb"
265 BROKEN_OPTIONS+=LLDB
266 .endif
267 # GDB in base is generally less functional than GDB in ports.  Ports GDB
268 # does not yet contain kernel support for arm, and sparc64 kernel support
269 # has not been tested.
270 .if ${__T:Marm*} != "" || ${__T} == "sparc64"
271 __DEFAULT_NO_OPTIONS+=GDB_LIBEXEC
272 .else
273 __DEFAULT_YES_OPTIONS+=GDB_LIBEXEC
274 .endif
275 # Only doing soft float API stuff on armv6
276 .if ${__T} != "armv6"
277 BROKEN_OPTIONS+=LIBSOFT
278 .endif
279 .if ${__T:Mmips*}
280 BROKEN_OPTIONS+=SSP
281 .endif
282 .if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*}
283 BROKEN_OPTIONS+=EFI
284 .endif
285 .if ${__T:Mmips64*}
286 # profiling won't work on MIPS64 because there is only assembly for o32
287 BROKEN_OPTIONS+=PROFILE
288 .endif
289 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
290     ${__T} == "powerpc64" || ${__T} == "sparc64"
291 __DEFAULT_YES_OPTIONS+=CXGBETOOL
292 .else
293 __DEFAULT_NO_OPTIONS+=CXGBETOOL
294 .endif
295
296 .include <bsd.mkopt.mk>
297
298 #
299 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
300 #
301 .for var in \
302     LIBCPLUSPLUS
303 .if !defined(MK_${var})
304 .if ${COMPILER_FEATURES:Mc++11}
305 .if defined(WITHOUT_${var})
306 MK_${var}:=     no
307 .else
308 MK_${var}:=     yes
309 .endif
310 .else
311 .if defined(WITH_${var})
312 MK_${var}:=     yes
313 .else
314 MK_${var}:=     no
315 .endif
316 .endif
317 .endif
318 .endfor
319
320 #
321 # Force some options off if their dependencies are off.
322 # Order is somewhat important.
323 #
324 .if !${COMPILER_FEATURES:Mc++11}
325 MK_LLVM_LIBUNWIND:=     no
326 .endif
327
328 .if ${MK_BINUTILS} == "no"
329 MK_GDB:=        no
330 .endif
331
332 .if ${MK_CAPSICUM} == "no"
333 MK_CASPER:=     no
334 .endif
335
336 .if ${MK_LIBPTHREAD} == "no"
337 MK_LIBTHR:=     no
338 .endif
339
340 .if ${MK_LDNS} == "no"
341 MK_LDNS_UTILS:= no
342 MK_UNBOUND:= no
343 .endif
344
345 .if ${MK_SOURCELESS} == "no"
346 MK_SOURCELESS_HOST:=    no
347 MK_SOURCELESS_UCODE:= no
348 .endif
349
350 .if ${MK_CDDL} == "no"
351 MK_ZFS:=        no
352 MK_CTF:=        no
353 .endif
354
355 .if ${MK_CRYPT} == "no"
356 MK_OPENSSL:=    no
357 MK_OPENSSH:=    no
358 MK_KERBEROS:=   no
359 .endif
360
361 .if ${MK_CXX} == "no"
362 MK_CLANG:=      no
363 MK_GNUCXX:=     no
364 MK_TESTS:=      no
365 .endif
366
367 .if ${MK_DIALOG} == "no"
368 MK_BSDINSTALL:= no
369 .endif
370
371 .if ${MK_MAIL} == "no"
372 MK_MAILWRAPPER:= no
373 MK_SENDMAIL:=   no
374 MK_DMAGENT:=    no
375 .endif
376
377 .if ${MK_NETGRAPH} == "no"
378 MK_ATM:=        no
379 MK_BLUETOOTH:=  no
380 .endif
381
382 .if ${MK_NLS} == "no"
383 MK_NLS_CATALOGS:= no
384 .endif
385
386 .if ${MK_OPENSSL} == "no"
387 MK_OPENSSH:=    no
388 MK_KERBEROS:=   no
389 .endif
390
391 .if ${MK_PF} == "no"
392 MK_AUTHPF:=     no
393 .endif
394
395 .if ${MK_TESTS} == "no"
396 MK_DTRACE_TESTS:= no
397 .endif
398
399 .if ${MK_ZONEINFO} == "no"
400 MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
401 MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no
402 .endif
403
404 .if ${MK_CROSS_COMPILER} == "no"
405 MK_BINUTILS_BOOTSTRAP:= no
406 MK_CLANG_BOOTSTRAP:= no
407 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
408 MK_GCC_BOOTSTRAP:= no
409 .endif
410
411 .if ${MK_TOOLCHAIN} == "no"
412 MK_BINUTILS:=   no
413 MK_CLANG:=      no
414 MK_GCC:=        no
415 MK_GDB:=        no
416 MK_INCLUDES:=   no
417 MK_LLD:=        no
418 MK_LLDB:=       no
419 .endif
420
421 .if ${MK_CLANG} == "no"
422 MK_CLANG_EXTRAS:= no
423 MK_CLANG_FULL:= no
424 .endif
425
426 #
427 # MK_* options whose default value depends on another option.
428 #
429 .for vv in \
430     GSSAPI/KERBEROS \
431     MAN_UTILS/MAN
432 .if defined(WITH_${vv:H})
433 MK_${vv:H}:=    yes
434 .elif defined(WITHOUT_${vv:H})
435 MK_${vv:H}:=    no
436 .else
437 MK_${vv:H}:=    ${MK_${vv:T}}
438 .endif
439 .endfor
440
441 #
442 # Set defaults for the MK_*_SUPPORT variables.
443 #
444
445 #
446 # MK_*_SUPPORT options which default to "yes" unless their corresponding
447 # MK_* variable is set to "no".
448 #
449 .for var in \
450     BLACKLIST \
451     BZIP2 \
452     INET \
453     INET6 \
454     KERBEROS \
455     KVM \
456     NETGRAPH \
457     PAM \
458     TESTS \
459     WIRELESS
460 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
461 MK_${var}_SUPPORT:= no
462 .else
463 MK_${var}_SUPPORT:= yes
464 .endif
465 .endfor
466
467 .if !${COMPILER_FEATURES:Mc++11}
468 MK_LLDB:=       no
469 .endif
470
471 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
472 # while in theory we could build it with that, we don't want to do
473 # that since it creates too much confusion for too little gain.
474 # XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
475 #      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
476 #      and to support 'make delete-old' when supplying an external toolchain.
477 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
478 MK_GNUCXX:=no
479 MK_GCC:=no
480 .endif
481
482 .endif #  !target(__<src.opts.mk>__)