]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/src.opts.mk
Add ELF Tool Chain's ar(1) and elfdump(1) to contrib
[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 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     BLUETOOTH \
60     BOOT \
61     BOOTPARAMD \
62     BOOTPD \
63     BSD_CPIO \
64     BSDINSTALL \
65     BSNMP \
66     BZIP2 \
67     CALENDAR \
68     CAPSICUM \
69     CASPER \
70     CCD \
71     CDDL \
72     CPP \
73     CROSS_COMPILER \
74     CRYPT \
75     CTM \
76     CUSE \
77     CXX \
78     DICT \
79     DMAGENT \
80     DYNAMICROOT \
81     ED_CRYPTO \
82     EE \
83     ELFTOOLCHAIN_TOOLS \
84     EXAMPLES \
85     FDT \
86     FILE \
87     FINGER \
88     FLOPPY \
89     FMTREE \
90     FORTH \
91     FP_LIBC \
92     FREEBSD_UPDATE \
93     FTP \
94     GAMES \
95     GCOV \
96     GDB \
97     GNU \
98     GNU_GREP_COMPAT \
99     GPIO \
100     GPL_DTC \
101     GROFF \
102     HAST \
103     HTML \
104     HYPERV \
105     ICONV \
106     INET \
107     INET6 \
108     INETD \
109     IPFILTER \
110     IPFW \
111     ISCSI \
112     JAIL \
113     KDUMP \
114     KVM \
115     LDNS \
116     LDNS_UTILS \
117     LEGACY_CONSOLE \
118     LIB32 \
119     LIBPTHREAD \
120     LIBTHR \
121     LOCALES \
122     LOCATE \
123     LPR \
124     LS_COLORS \
125     LZMA_SUPPORT \
126     MAIL \
127     MAILWRAPPER \
128     MAKE \
129     MANDOCDB \
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     RCMDS \
147     RBOOTD \
148     RCS \
149     RESCUE \
150     ROUTED \
151     SENDMAIL \
152     SETUID_LOGIN \
153     SHAREDOCS \
154     SOURCELESS \
155     SOURCELESS_HOST \
156     SOURCELESS_UCODE \
157     SVNLITE \
158     SYSCONS \
159     SYSINSTALL \
160     TALK \
161     TCP_WRAPPERS \
162     TCSH \
163     TELNET \
164     TESTS \
165     TEXTPROC \
166     TFTP \
167     TIMED \
168     UNBOUND \
169     USB \
170     UTMPX \
171     VI \
172     VT \
173     WIRELESS \
174     WPA_SUPPLICANT_EAPOL \
175     ZFS \
176     ZONEINFO
177
178 __DEFAULT_NO_OPTIONS = \
179     BSD_GREP \
180     CLANG_EXTRAS \
181     EISA \
182     HESIOD \
183     LLDB \
184     NAND \
185     OFED \
186     OPENLDAP \
187     OPENSSH_NONE_CIPHER \
188     SHARED_TOOLCHAIN \
189     SORT_THREADS \
190     SVN
191
192 #
193 # Default behaviour of some options depends on the architecture.  Unfortunately
194 # this means that we have to test TARGET_ARCH (the buildworld case) as well
195 # as MACHINE_ARCH (the non-buildworld case).  Normally TARGET_ARCH is not
196 # used at all in bsd.*.mk, but we have to make an exception here if we want
197 # to allow defaults for some things like clang to vary by target architecture.
198 # Additional, per-target behavior should be rarely added only after much
199 # gnashing of teeth and grinding of gears.
200 #
201 .if defined(TARGET_ARCH)
202 __T=${TARGET_ARCH}
203 .else
204 __T=${MACHINE_ARCH}
205 .endif
206 .if defined(TARGET)
207 __TT=${TARGET}
208 .else
209 __TT=${MACHINE}
210 .endif
211
212 .include <bsd.compiler.mk>
213 .if !${COMPILER_FEATURES:Mc++11}
214 # If the compiler is not C++11 capable, disable clang and use gcc instead.
215 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
216 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC
217 .elif ${__T} == "aarch64" || ${__T} == "amd64" || ${__TT} == "arm" || \
218     ${__T} == "i386"
219 # On x86 and arm, clang is enabled, and will be installed as the default cc.
220 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC
221 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
222 .elif ${__T:Mpowerpc*}
223 # On powerpc, clang is enabled, but gcc is installed as the default cc.
224 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
225 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC
226 .else
227 # Everything else disables clang, and uses gcc instead.
228 __DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
229 __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC
230 .endif
231 .if ${__T} == "aarch64"
232 BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB
233 __DEFAULT_YES_OPTIONS+=ELFCOPY_AS_OBJCOPY
234 .else
235 __DEFAULT_NO_OPTIONS+=ELFCOPY_AS_OBJCOPY
236 .endif
237 # LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
238 .if ${__T} == "arm" || ${__T} == "armeb"
239 BROKEN_OPTIONS+=LLDB
240 .endif
241
242 .include <bsd.mkopt.mk>
243
244 #
245 # MK_* options that default to "yes" if the compiler is a C++11 compiler.
246 #
247 .for var in \
248     LIBCPLUSPLUS
249 .if !defined(MK_${var})
250 .if ${COMPILER_FEATURES:Mc++11}
251 .if defined(WITHOUT_${var})
252 MK_${var}:=     no
253 .else
254 MK_${var}:=     yes
255 .endif
256 .else
257 .if defined(WITH_${var})
258 MK_${var}:=     yes
259 .else
260 MK_${var}:=     no
261 .endif
262 .endif
263 .endif
264 .endfor
265
266 #
267 # Force some options off if their dependencies are off.
268 # Order is somewhat important.
269 #
270 .if ${MK_LIBPTHREAD} == "no"
271 MK_LIBTHR:=     no
272 .endif
273
274 .if ${MK_LDNS} == "no"
275 MK_LDNS_UTILS:= no
276 MK_UNBOUND:= no
277 .endif
278
279 .if ${MK_SOURCELESS} == "no"
280 MK_SOURCELESS_HOST:=    no
281 MK_SOURCELESS_UCODE:= no
282 .endif
283
284 .if ${MK_CDDL} == "no"
285 MK_ZFS:=        no
286 MK_CTF:=        no
287 .endif
288
289 .if ${MK_CRYPT} == "no"
290 MK_OPENSSL:=    no
291 MK_OPENSSH:=    no
292 MK_KERBEROS:=   no
293 .endif
294
295 .if ${MK_CXX} == "no"
296 MK_CLANG:=      no
297 MK_GROFF:=      no
298 MK_GNUCXX:=     no
299 .endif
300
301 .if ${MK_MAIL} == "no"
302 MK_MAILWRAPPER:= no
303 MK_SENDMAIL:=   no
304 MK_DMAGENT:=    no
305 .endif
306
307 .if ${MK_NETGRAPH} == "no"
308 MK_ATM:=        no
309 MK_BLUETOOTH:=  no
310 .endif
311
312 .if ${MK_OPENSSL} == "no"
313 MK_OPENSSH:=    no
314 MK_KERBEROS:=   no
315 .endif
316
317 .if ${MK_PF} == "no"
318 MK_AUTHPF:=     no
319 .endif
320
321 .if ${MK_TEXTPROC} == "no"
322 MK_GROFF:=      no
323 .endif
324
325 .if ${MK_CROSS_COMPILER} == "no"
326 MK_BINUTILS_BOOTSTRAP:= no
327 MK_CLANG_BOOTSTRAP:= no
328 MK_GCC_BOOTSTRAP:= no
329 .endif
330
331 .if ${MK_TOOLCHAIN} == "no"
332 MK_BINUTILS:=   no
333 MK_CLANG:=      no
334 MK_GCC:=        no
335 MK_GDB:=        no
336 MK_INCLUDES:=   no
337 .endif
338
339 .if ${MK_CLANG} == "no"
340 MK_CLANG_EXTRAS:= no
341 MK_CLANG_FULL:= no
342 .endif
343
344 #
345 # Set defaults for the MK_*_SUPPORT variables.
346 #
347
348 #
349 # MK_*_SUPPORT options which default to "yes" unless their corresponding
350 # MK_* variable is set to "no".
351 #
352 .for var in \
353     BZIP2 \
354     GNU \
355     INET \
356     INET6 \
357     KERBEROS \
358     KVM \
359     NETGRAPH \
360     PAM \
361     TESTS \
362     WIRELESS
363 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
364 MK_${var}_SUPPORT:= no
365 .else
366 MK_${var}_SUPPORT:= yes
367 .endif
368 .endfor
369
370 #
371 # MK_* options whose default value depends on another option.
372 #
373 .for vv in \
374     GSSAPI/KERBEROS \
375     MAN_UTILS/MAN
376 .if defined(WITH_${vv:H})
377 MK_${vv:H}:=    yes
378 .elif defined(WITHOUT_${vv:H})
379 MK_${vv:H}:=    no
380 .else
381 MK_${vv:H}:=    ${MK_${vv:T}}
382 .endif
383 .endfor
384
385 .if !${COMPILER_FEATURES:Mc++11}
386 MK_LLDB:=       no
387 .endif
388
389 # gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
390 # while in theory we could build it with that, we don't want to do
391 # that since it creates too much confusion for too little gain.
392 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
393 MK_GNUCXX:=no
394 MK_GCC:=no
395 .endif
396
397 .endif #  !target(__<src.opts.mk>__)