]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
Remove WITHOUT_GNU and WITHOUT_GNU_SUPPORT src.conf.knobs
[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_DIFF \
100     GNU_GREP \
101     GNU_GREP_COMPAT \
102     GPIO \
103     GPL_DTC \
104     GROFF \
105     HAST \
106     HTML \
107     HYPERV \
108     ICONV \
109     INET \
110     INET6 \
111     INETD \
112     IPFILTER \
113     IPFW \
114     ISCSI \
115     JAIL \
116     KDUMP \
117     KVM \
118     LDNS \
119     LDNS_UTILS \
120     LEGACY_CONSOLE \
121     LIB32 \
122     LIBPTHREAD \
123     LIBTHR \
124     LOCALES \
125     LOCATE \
126     LPR \
127     LS_COLORS \
128     LZMA_SUPPORT \
129     MAIL \
130     MAILWRAPPER \
131     MAKE \
132     NDIS \
133     NETCAT \
134     NETGRAPH \
135     NLS_CATALOGS \
136     NS_CACHING \
137     NTP \
138     OPENSSL \
139     PAM \
140     PC_SYSINSTALL \
141     PF \
142     PKGBOOTSTRAP \
143     PMC \
144     PORTSNAP \
145     PPP \
146     QUOTAS \
147     RADIUS_SUPPORT \
148     RCMDS \
149     RBOOTD \
150     RESCUE \
151     ROUTED \
152     SENDMAIL \
153     SETUID_LOGIN \
154     SHAREDOCS \
155     SOURCELESS \
156     SOURCELESS_HOST \
157     SOURCELESS_UCODE \
158     SVNLITE \
159     SYSCONS \
160     SYSTEM_COMPILER \
161     TALK \
162     TCP_WRAPPERS \
163     TCSH \
164     TELNET \
165     TESTS \
166     TEXTPROC \
167     TFTP \
168     TIMED \
169     UNBOUND \
170     USB \
171     UTMPX \
172     VI \
173     VT \
174     WIRELESS \
175     WPA_SUPPLICANT_EAPOL \
176     ZFS \
177     ZONEINFO
178
179 __DEFAULT_NO_OPTIONS = \
180     BSD_GREP \
181     CLANG_EXTRAS \
182     DTRACE_TESTS \
183     HESIOD \
184     LIBSOFT \
185     NAND \
186     OFED \
187     OPENLDAP \
188     REPRODUCIBLE_BUILD \
189     SHARED_TOOLCHAIN \
190     SORT_THREADS \
191     SVN \
192
193
194 #
195 # Default behaviour of some options depends on the architecture.  Unfortunately
196 # this means that we have to test TARGET_ARCH (the buildworld case) as well
197 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
198 # used at all in bsd.*.mk, but we have to make an exception here if we want
199 # to allow defaults for some things like clang to vary by target architecture.
200 # Additional, per-target behavior should be rarely added only after much
201 # gnashing of teeth and grinding of gears.
202 #
203 .if defined(TARGET_ARCH)
204 __T=${TARGET_ARCH}
205 .else
206 __T=${MACHINE_ARCH}
207 .endif
208 .if defined(TARGET)
209 __TT=${TARGET}
210 .else
211 __TT=${MACHINE}
212 .endif
213
214 .include <bsd.compiler.mk>
215 # If the compiler is not C++11 capable, disable Clang and use GCC instead.
216 # This means that architectures that have GCC 4.2 as default can not
217 # build Clang without using an external compiler.
218
219 .if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \
220     ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386")
221 # Clang is enabled, and will be installed as the default /usr/bin/cc.
222 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
223 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
224 .elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
225 # If an external compiler that supports C++11 is used as ${CC} and Clang
226 # supports the target, then Clang is enabled but GCC is installed as the
227 # default /usr/bin/cc.
228 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
229 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC LLD
230 .else
231 # Everything else disables Clang, and uses GCC instead.
232 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
233 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD
234 .endif
235 # In-tree binutils/gcc are older versions without modern architecture support.
236 .if ${__T} == "aarch64" || ${__T:Mriscv*} != ""
237 BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
238 .endif
239 .if ${__T:Mriscv*} != ""
240 BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V"
241 BROKEN_OPTIONS+=TESTS   # "undefined reference to `_Unwind_Resume'"
242 BROKEN_OPTIONS+=CXX     # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'"
243 .endif
244 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
245     ${__T:Mriscv*} != ""
246 __DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
247 .else
248 __DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
249 .endif
250 .if ${__T} == "aarch64"
251 __DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
252 .else
253 __DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
254 .endif
255 .if ${__T} == "aarch64" || ${__T} == "amd64"
256 __DEFAULT_YES_OPTIONS+=LLDB
257 .else
258 __DEFAULT_NO_OPTIONS+=LLDB
259 .endif
260 # LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
261 .if ${__T} == "arm" || ${__T} == "armeb"
262 BROKEN_OPTIONS+=LLDB
263 .endif
264 # GDB in base is generally less functional than GDB in ports.  Ports GDB
265 # does not yet contain kernel support for arm, and sparc64 kernel support
266 # has not been tested.
267 .if ${__T:Marm*} != "" || ${__T} == "sparc64"
268 __DEFAULT_YES_OPTIONS+=GDB
269 .else
270 __DEFAULT_NO_OPTIONS+=GDB
271 .endif
272 # Only doing soft float API stuff on armv6
273 .if ${__T} != "armv6"
274 BROKEN_OPTIONS+=LIBSOFT
275 .endif
276 .if ${__T:Mmips*}
277 BROKEN_OPTIONS+=SSP
278 .endif
279 .if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*}
280 BROKEN_OPTIONS+=EFI
281 .endif
282
283 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
284     ${__T} == "powerpc64" || ${__T} == "sparc64"
285 __DEFAULT_YES_OPTIONS+=CXGBETOOL
286 .else
287 __DEFAULT_NO_OPTIONS+=CXGBETOOL
288 .endif
289
290 .include <bsd.mkopt.mk>
291
292 #
293 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
294 #
295 .for var in \
296     LIBCPLUSPLUS
297 .if !defined(MK_${var})
298 .if ${COMPILER_FEATURES:Mc++11}
299 .if defined(WITHOUT_${var})
300 MK_${var}:=     no
301 .else
302 MK_${var}:=     yes
303 .endif
304 .else
305 .if defined(WITH_${var})
306 MK_${var}:=     yes
307 .else
308 MK_${var}:=     no
309 .endif
310 .endif
311 .endif
312 .endfor
313
314 #
315 # Force some options off if their dependencies are off.
316 # Order is somewhat important.
317 #
318 .if !${COMPILER_FEATURES:Mc++11}
319 MK_LLVM_LIBUNWIND:=     no
320 .endif
321
322 .if ${MK_BINUTILS} == "no"
323 MK_GDB:=        no
324 .endif
325
326 .if ${MK_CAPSICUM} == "no"
327 MK_CASPER:=     no
328 .endif
329
330 .if ${MK_LIBPTHREAD} == "no"
331 MK_LIBTHR:=     no
332 .endif
333
334 .if ${MK_LDNS} == "no"
335 MK_LDNS_UTILS:= no
336 MK_UNBOUND:= no
337 .endif
338
339 .if ${MK_LLD} == "no"
340 MK_LLD_IS_LD:=  no
341 .endif
342
343 # LLD requires LLVM libraries, and we do not yet compare in-tree and host LLD
344 # versions to avoid building it if they are identical.
345 .if ${MK_LLD_IS_LD} != "no"
346 MK_SYSTEM_COMPILER:=    no
347 .endif
348
349 .if ${MK_SOURCELESS} == "no"
350 MK_SOURCELESS_HOST:=    no
351 MK_SOURCELESS_UCODE:= no
352 .endif
353
354 .if ${MK_CDDL} == "no"
355 MK_ZFS:=        no
356 MK_CTF:=        no
357 .endif
358
359 .if ${MK_CRYPT} == "no"
360 MK_OPENSSL:=    no
361 MK_OPENSSH:=    no
362 MK_KERBEROS:=   no
363 .endif
364
365 .if ${MK_CXX} == "no"
366 MK_CLANG:=      no
367 MK_GROFF:=      no
368 MK_GNUCXX:=     no
369 MK_TESTS:=      no
370 .endif
371
372 .if ${MK_DIALOG} == "no"
373 MK_BSDINSTALL:= no
374 .endif
375
376 .if ${MK_MAIL} == "no"
377 MK_MAILWRAPPER:= no
378 MK_SENDMAIL:=   no
379 MK_DMAGENT:=    no
380 .endif
381
382 .if ${MK_NETGRAPH} == "no"
383 MK_ATM:=        no
384 MK_BLUETOOTH:=  no
385 .endif
386
387 .if ${MK_OPENSSL} == "no"
388 MK_OPENSSH:=    no
389 MK_KERBEROS:=   no
390 .endif
391
392 .if ${MK_PF} == "no"
393 MK_AUTHPF:=     no
394 .endif
395
396 .if ${MK_TESTS} == "no"
397 MK_DTRACE_TESTS:= no
398 .endif
399
400 .if ${MK_TEXTPROC} == "no"
401 MK_GROFF:=      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>__)