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