]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
Disable in-tree GDB by default on x86, mips, and powerpc.
[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     BSDINSTALL \
66     BSNMP \
67     BZIP2 \
68     CALENDAR \
69     CAPSICUM \
70     CASPER \
71     CCD \
72     CDDL \
73     CPP \
74     CROSS_COMPILER \
75     CRYPT \
76     CTM \
77     CUSE \
78     CXX \
79     DIALOG \
80     DICT \
81     DMAGENT \
82     DYNAMICROOT \
83     ED_CRYPTO \
84     EE \
85     EFI \
86     ELFTOOLCHAIN_BOOTSTRAP \
87     EXAMPLES \
88     FDT \
89     FILE \
90     FINGER \
91     FLOPPY \
92     FMTREE \
93     FORTH \
94     FP_LIBC \
95     FREEBSD_UPDATE \
96     FTP \
97     GAMES \
98     GCOV \
99     GNU \
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     SHARED_TOOLCHAIN \
191     SORT_THREADS \
192     SVN \
193
194
195 #
196 # Default behaviour of some options depends on the architecture.  Unfortunately
197 # this means that we have to test TARGET_ARCH (the buildworld case) as well
198 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
199 # used at all in bsd.*.mk, but we have to make an exception here if we want
200 # to allow defaults for some things like clang to vary by target architecture.
201 # Additional, per-target behavior should be rarely added only after much
202 # gnashing of teeth and grinding of gears.
203 #
204 .if defined(TARGET_ARCH)
205 __T=${TARGET_ARCH}
206 .else
207 __T=${MACHINE_ARCH}
208 .endif
209 .if defined(TARGET)
210 __TT=${TARGET}
211 .else
212 __TT=${MACHINE}
213 .endif
214
215 .include <bsd.compiler.mk>
216 # If the compiler is not C++11 capable, disable Clang and use GCC instead.
217 # This means that architectures that have GCC 4.2 as default can not
218 # build Clang without using an external compiler.
219
220 .if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
221     ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
222 # Clang is enabled, and will be installed as the default /usr/bin/cc.
223 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
224 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
225 .elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
226 # If an external compiler that supports C++11 is used as ${CC} and Clang
227 # supports the target, then Clang is enabled but GCC is installed as the
228 # default /usr/bin/cc.
229 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
230 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC LLD
231 .else
232 # Everything else disables Clang, and uses GCC instead.
233 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
234 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
235 .endif
236 # In-tree binutils/gcc are older versions without modern architecture support.
237 .if ${__T} == "aarch64" || ${__T:Mriscv*} != ""
238 BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
239 .endif
240 .if ${__T:Mriscv*} != ""
241 BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
242 BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
243 BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
244 .endif
245 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
246     ${__T:Mriscv*} != ""
247 __DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
248 .else
249 __DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
250 .endif
251 .if ${__T} == "aarch64"
252 __DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
253 .else
254 __DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
255 .endif
256 .if ${__T} == "aarch64" || ${__T} == "amd64"
257 __DEFAULT_YES_OPTIONS+=LLDB
258 .else
259 __DEFAULT_NO_OPTIONS+=LLDB
260 .endif
261 # LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
262 .if ${__T} == "arm" || ${__T} == "armeb"
263 BROKEN_OPTIONS+=LLDB
264 .endif
265 # GDB in base is generally less functional than GDB in ports.  Ports GDB
266 # does not yet contain kernel support for arm, and sparc64 kernel support
267 # has not been tested.
268 .if ${__T:Marm*} != "" || ${__T} == "sparc64"
269 __DEFAULT_YES_OPTIONS+=GDB
270 .else
271 __DEFAULT_NO_OPTIONS+=GDB
272 .endif
273 # Only doing soft float API stuff on armv6
274 .if ${__T} != "armv6"
275 BROKEN_OPTIONS+=LIBSOFT
276 .endif
277 .if ${__T:Mmips*}
278 BROKEN_OPTIONS+=SSP
279 .endif
280 .if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*}
281 BROKEN_OPTIONS+=EFI
282 .endif
283
284 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
285     ${__T} == "powerpc64" || ${__T} == "sparc64"
286 __DEFAULT_YES_OPTIONS+=CXGBETOOL
287 .else
288 __DEFAULT_NO_OPTIONS+=CXGBETOOL
289 .endif
290
291 .include <bsd.mkopt.mk>
292
293 #
294 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
295 #
296 .for var in \
297     LIBCPLUSPLUS
298 .if !defined(MK_${var})
299 .if ${COMPILER_FEATURES:Mc++11}
300 .if defined(WITHOUT_${var})
301 MK_${var}:=     no
302 .else
303 MK_${var}:=     yes
304 .endif
305 .else
306 .if defined(WITH_${var})
307 MK_${var}:=     yes
308 .else
309 MK_${var}:=     no
310 .endif
311 .endif
312 .endif
313 .endfor
314
315 #
316 # Force some options off if their dependencies are off.
317 # Order is somewhat important.
318 #
319 .if !${COMPILER_FEATURES:Mc++11}
320 MK_LLVM_LIBUNWIND:=     no
321 .endif
322
323 .if ${MK_BINUTILS} == "no"
324 MK_GDB:=        no
325 .endif
326
327 .if ${MK_CAPSICUM} == "no"
328 MK_CASPER:=     no
329 .endif
330
331 .if ${MK_LIBPTHREAD} == "no"
332 MK_LIBTHR:=     no
333 .endif
334
335 .if ${MK_LDNS} == "no"
336 MK_LDNS_UTILS:= no
337 MK_UNBOUND:= no
338 .endif
339
340 .if ${MK_LLD} == "no"
341 MK_LLD_IS_LD:=  no
342 .endif
343
344 # LLD requires LLVM libraries, and we do not yet compare in-tree and host LLD
345 # versions to avoid building it if they are identical.
346 .if ${MK_LLD_IS_LD} != "no"
347 MK_SYSTEM_COMPILER:=    no
348 .endif
349
350 .if ${MK_SOURCELESS} == "no"
351 MK_SOURCELESS_HOST:=    no
352 MK_SOURCELESS_UCODE:= no
353 .endif
354
355 .if ${MK_CDDL} == "no"
356 MK_ZFS:=        no
357 MK_CTF:=        no
358 .endif
359
360 .if ${MK_CRYPT} == "no"
361 MK_OPENSSL:=    no
362 MK_OPENSSH:=    no
363 MK_KERBEROS:=   no
364 .endif
365
366 .if ${MK_CXX} == "no"
367 MK_CLANG:=      no
368 MK_GROFF:=      no
369 MK_GNUCXX:=     no
370 MK_TESTS:=      no
371 .endif
372
373 .if ${MK_DIALOG} == "no"
374 MK_BSDINSTALL:= no
375 .endif
376
377 .if ${MK_MAIL} == "no"
378 MK_MAILWRAPPER:= no
379 MK_SENDMAIL:=   no
380 MK_DMAGENT:=    no
381 .endif
382
383 .if ${MK_NETGRAPH} == "no"
384 MK_ATM:=        no
385 MK_BLUETOOTH:=  no
386 .endif
387
388 .if ${MK_OPENSSL} == "no"
389 MK_OPENSSH:=    no
390 MK_KERBEROS:=   no
391 .endif
392
393 .if ${MK_PF} == "no"
394 MK_AUTHPF:=     no
395 .endif
396
397 .if ${MK_TESTS} == "no"
398 MK_DTRACE_TESTS:= no
399 .endif
400
401 .if ${MK_TEXTPROC} == "no"
402 MK_GROFF:=      no
403 .endif
404
405 .if ${MK_CROSS_COMPILER} == "no"
406 MK_BINUTILS_BOOTSTRAP:= no
407 MK_CLANG_BOOTSTRAP:= no
408 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
409 MK_GCC_BOOTSTRAP:= no
410 .endif
411
412 .if ${MK_TOOLCHAIN} == "no"
413 MK_BINUTILS:=   no
414 MK_CLANG:=      no
415 MK_GCC:=        no
416 MK_GDB:=        no
417 MK_INCLUDES:=   no
418 MK_LLD:=        no
419 MK_LLDB:=       no
420 .endif
421
422 .if ${MK_CLANG} == "no"
423 MK_CLANG_EXTRAS:= no
424 MK_CLANG_FULL:= no
425 .endif
426
427 #
428 # MK_* options whose default value depends on another option.
429 #
430 .for vv in \
431     GSSAPI/KERBEROS \
432     MAN_UTILS/MAN
433 .if defined(WITH_${vv:H})
434 MK_${vv:H}:=    yes
435 .elif defined(WITHOUT_${vv:H})
436 MK_${vv:H}:=    no
437 .else
438 MK_${vv:H}:=    ${MK_${vv:T}}
439 .endif
440 .endfor
441
442 #
443 # Set defaults for the MK_*_SUPPORT variables.
444 #
445
446 #
447 # MK_*_SUPPORT options which default to "yes" unless their corresponding
448 # MK_* variable is set to "no".
449 #
450 .for var in \
451     BLACKLIST \
452     BZIP2 \
453     GNU \
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>__)