]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
MFhead@r325004
[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     GDB \
100     GNU_DIFF \
101     GNU_GREP \
102     GPIO \
103     HAST \
104     HTML \
105     HYPERV \
106     ICONV \
107     INET \
108     INET6 \
109     INETD \
110     IPFILTER \
111     IPFW \
112     ISCSI \
113     JAIL \
114     KDUMP \
115     KVM \
116     LDNS \
117     LDNS_UTILS \
118     LEGACY_CONSOLE \
119     LIB32 \
120     LIBPTHREAD \
121     LIBTHR \
122     LOCALES \
123     LOCATE \
124     LPR \
125     LS_COLORS \
126     LZMA_SUPPORT \
127     MAIL \
128     MAILWRAPPER \
129     MAKE \
130     NDIS \
131     NETCAT \
132     NETGRAPH \
133     NLS_CATALOGS \
134     NS_CACHING \
135     NTP \
136     OPENSSL \
137     PAM \
138     PC_SYSINSTALL \
139     PF \
140     PKGBOOTSTRAP \
141     PMC \
142     PORTSNAP \
143     PPP \
144     QUOTAS \
145     RADIUS_SUPPORT \
146     RBOOTD \
147     RESCUE \
148     ROUTED \
149     SENDMAIL \
150     SETUID_LOGIN \
151     SHAREDOCS \
152     SOURCELESS \
153     SOURCELESS_HOST \
154     SOURCELESS_UCODE \
155     SVNLITE \
156     SYSCONS \
157     SYSTEM_COMPILER \
158     TALK \
159     TCP_WRAPPERS \
160     TCSH \
161     TELNET \
162     TEXTPROC \
163     TFTP \
164     TIMED \
165     UNBOUND \
166     USB \
167     UTMPX \
168     VI \
169     VT \
170     WIRELESS \
171     WPA_SUPPLICANT_EAPOL \
172     ZFS \
173     ZONEINFO
174
175 __DEFAULT_NO_OPTIONS = \
176     BSD_GREP \
177     BSD_GREP_FASTMATCH \
178     CLANG_EXTRAS \
179     DTRACE_TESTS \
180     GNU_GREP_COMPAT \
181     HESIOD \
182     LIBSOFT \
183     LOADER_FORCE_LE \
184     NAND \
185     OFED \
186     OPENLDAP \
187     REPRODUCIBLE_BUILD \
188     RPCBIND_WARMSTART_SUPPORT \
189     SHARED_TOOLCHAIN \
190     SORT_THREADS \
191     SVN \
192     ZONEINFO_LEAPSECONDS_SUPPORT \
193     ZONEINFO_OLD_TIMEZONES_SUPPORT \
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 GPL_DTC
226 .elif ${COMPILER_FEATURES:Mc++11} && ${__T:Mriscv*} == "" && ${__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 GPL_DTC LLD
232 .else
233 # Everything else disables Clang, and uses GCC instead.
234 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC
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" || ${__T} == "i386"
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_NO_OPTIONS+=GDB_LIBEXEC
271 .else
272 __DEFAULT_YES_OPTIONS+=GDB_LIBEXEC
273 .endif
274 # Only doing soft float API stuff on armv6 and armv7
275 .if ${__T} != "armv6" && ${__T} != "armv7"
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 .if ${__T:Mmips64*}
285 # profiling won't work on MIPS64 because there is only assembly for o32
286 BROKEN_OPTIONS+=PROFILE
287 .endif
288 .if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \
289     ${__T} == "powerpc64" || ${__T} == "sparc64"
290 __DEFAULT_YES_OPTIONS+=CXGBETOOL
291 .else
292 __DEFAULT_NO_OPTIONS+=CXGBETOOL
293 .endif
294
295 # clang and gcc 4.8+ (c++11 supporting compilers) support -fprofile-dir and
296 # can compile lib/libclang_rt/profile . libgcov, etc, in base is a dead end
297 # that I (ngie) do not wish to support with MK_COVERAGE.
298 #
299 # NB: some gcc cross-toolchain packages are currently broken: bug 223174.
300 .if ${COMPILER_FEATURES:Mc++11}
301 __DEFAULT_NO_OPTIONS+=  COVERAGE
302 .else
303 BROKEN_OPTIONS+=COVERAGE
304 .endif
305
306 .include <bsd.mkopt.mk>
307
308 #
309 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
310 #
311 .for var in \
312     LIBCPLUSPLUS
313 .if !defined(MK_${var})
314 .if ${COMPILER_FEATURES:Mc++11}
315 .if defined(WITHOUT_${var})
316 MK_${var}:=     no
317 .else
318 MK_${var}:=     yes
319 .endif
320 .else
321 .if defined(WITH_${var})
322 MK_${var}:=     yes
323 .else
324 MK_${var}:=     no
325 .endif
326 .endif
327 .endif
328 .endfor
329
330 #
331 # Force some options off if their dependencies are off.
332 # Order is somewhat important.
333 #
334 .if !${COMPILER_FEATURES:Mc++11}
335 MK_LLVM_LIBUNWIND:=     no
336 .endif
337
338 .if ${MK_BINUTILS} == "no"
339 MK_GDB:=        no
340 .endif
341
342 .if ${MK_CAPSICUM} == "no"
343 MK_CASPER:=     no
344 .endif
345
346 .if ${MK_LIBPTHREAD} == "no"
347 MK_LIBTHR:=     no
348 .endif
349
350 .if ${MK_LDNS} == "no"
351 MK_LDNS_UTILS:= no
352 MK_UNBOUND:= no
353 .endif
354
355 .if ${MK_SOURCELESS} == "no"
356 MK_SOURCELESS_HOST:=    no
357 MK_SOURCELESS_UCODE:= no
358 .endif
359
360 .if ${MK_CDDL} == "no"
361 MK_ZFS:=        no
362 MK_CTF:=        no
363 .endif
364
365 .if ${MK_CRYPT} == "no"
366 MK_OPENSSL:=    no
367 MK_OPENSSH:=    no
368 MK_KERBEROS:=   no
369 .endif
370
371 .if ${MK_CXX} == "no"
372 MK_CLANG:=      no
373 MK_GNUCXX:=     no
374 MK_TESTS:=      no
375 .endif
376
377 .if ${MK_DIALOG} == "no"
378 MK_BSDINSTALL:= no
379 .endif
380
381 .if ${MK_MAIL} == "no"
382 MK_MAILWRAPPER:= no
383 MK_SENDMAIL:=   no
384 MK_DMAGENT:=    no
385 .endif
386
387 .if ${MK_NETGRAPH} == "no"
388 MK_ATM:=        no
389 MK_BLUETOOTH:=  no
390 .endif
391
392 .if ${MK_NLS} == "no"
393 MK_NLS_CATALOGS:= no
394 .endif
395
396 .if ${MK_OPENSSL} == "no"
397 MK_OPENSSH:=    no
398 MK_KERBEROS:=   no
399 .endif
400
401 .if ${MK_PF} == "no"
402 MK_AUTHPF:=     no
403 .endif
404
405 .if ${MK_TESTS} == "no"
406 MK_DTRACE_TESTS:= no
407 .endif
408
409 .if ${MK_ZONEINFO} == "no"
410 MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
411 MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no
412 .endif
413
414 .if ${MK_CROSS_COMPILER} == "no"
415 MK_BINUTILS_BOOTSTRAP:= no
416 MK_CLANG_BOOTSTRAP:= no
417 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
418 MK_GCC_BOOTSTRAP:= no
419 .endif
420
421 .if ${MK_TOOLCHAIN} == "no"
422 MK_BINUTILS:=   no
423 MK_CLANG:=      no
424 MK_COVERAGE:=   no
425 MK_GCC:=        no
426 MK_GDB:=        no
427 MK_INCLUDES:=   no
428 MK_LLD:=        no
429 MK_LLDB:=       no
430 .endif
431
432 .if ${MK_CLANG} == "no"
433 MK_CLANG_EXTRAS:= no
434 MK_CLANG_FULL:= no
435 .endif
436
437 #
438 # MK_* options whose default value depends on another option.
439 #
440 .for vv in \
441     GSSAPI/KERBEROS \
442     MAN_UTILS/MAN
443 .if defined(WITH_${vv:H})
444 MK_${vv:H}:=    yes
445 .elif defined(WITHOUT_${vv:H})
446 MK_${vv:H}:=    no
447 .else
448 MK_${vv:H}:=    ${MK_${vv:T}}
449 .endif
450 .endfor
451
452 #
453 # Set defaults for the MK_*_SUPPORT variables.
454 #
455
456 #
457 # MK_*_SUPPORT options which default to "yes" unless their corresponding
458 # MK_* variable is set to "no".
459 #
460 .for var in \
461     BLACKLIST \
462     BZIP2 \
463     INET \
464     INET6 \
465     KERBEROS \
466     KVM \
467     NETGRAPH \
468     PAM \
469     TESTS \
470     WIRELESS
471 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
472 MK_${var}_SUPPORT:= no
473 .else
474 MK_${var}_SUPPORT:= yes
475 .endif
476 .endfor
477
478 .if !${COMPILER_FEATURES:Mc++11}
479 MK_LLDB:=       no
480 .endif
481
482 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
483 # while in theory we could build it with that, we don't want to do
484 # that since it creates too much confusion for too little gain.
485 # XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
486 #      to prevent Makefile.inc1 from bootstrapping unneeded dependencies
487 #      and to support 'make delete-old' when supplying an external toolchain.
488 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
489 MK_GNUCXX:=no
490 MK_GCC:=no
491 .endif
492
493 .endif #  !target(__<src.opts.mk>__)