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 BSD_GREP_FASTMATCH \ 66 BSDINSTALL \ 67 BSNMP \ 68 BZIP2 \ 69 CALENDAR \ 70 CAPSICUM \ 71 CASPER \ 72 CCD \ 73 CDDL \ 74 CPP \ 75 CROSS_COMPILER \ 76 CRYPT \ 77 CTM \ 78 CUSE \ 79 CXX \ 80 DIALOG \ 81 DICT \ 82 DMAGENT \ 83 DYNAMICROOT \ 84 ED_CRYPTO \ 85 EE \ 86 EFI \ 87 ELFTOOLCHAIN_BOOTSTRAP \ 88 EXAMPLES \ 89 FDT \ 90 FILE \ 91 FINGER \ 92 FLOPPY \ 93 FMTREE \ 94 FORTH \ 95 FP_LIBC \ 96 FREEBSD_UPDATE \ 97 FTP \ 98 GAMES \ 99 GCOV \ 100 GDB \ 101 GNU_DIFF \ 102 GNU_GREP \ 103 GPIO \ 104 HAST \ 105 HTML \ 106 HYPERV \ 107 ICONV \ 108 INET \ 109 INET6 \ 110 INETD \ 111 IPFILTER \ 112 IPFW \ 113 ISCSI \ 114 JAIL \ 115 KDUMP \ 116 KVM \ 117 LDNS \ 118 LDNS_UTILS \ 119 LEGACY_CONSOLE \ 120 LIB32 \ 121 LIBPTHREAD \ 122 LIBTHR \ 123 LOCALES \ 124 LOCATE \ 125 LPR \ 126 LS_COLORS \ 127 LZMA_SUPPORT \ 128 MAIL \ 129 MAILWRAPPER \ 130 MAKE \ 131 NDIS \ 132 NETCAT \ 133 NETGRAPH \ 134 NLS_CATALOGS \ 135 NS_CACHING \ 136 NTP \ 137 OPENSSL \ 138 PAM \ 139 PC_SYSINSTALL \ 140 PF \ 141 PKGBOOTSTRAP \ 142 PMC \ 143 PORTSNAP \ 144 PPP \ 145 QUOTAS \ 146 RADIUS_SUPPORT \ 147 RCMDS \ 148 RBOOTD \ 149 RESCUE \ 150 ROUTED \ 151 SENDMAIL \ 152 SETUID_LOGIN \ 153 SHAREDOCS \ 154 SOURCELESS \ 155 SOURCELESS_HOST \ 156 SOURCELESS_UCODE \ 157 SVNLITE \ 158 SYSCONS \ 159 SYSTEM_COMPILER \ 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 DTRACE_TESTS \ 182 GNU_GREP_COMPAT \ 183 HESIOD \ 184 LIBSOFT \ 185 NAND \ 186 OFED \ 187 OPENLDAP \ 188 REPRODUCIBLE_BUILD \ 189 RPCBIND_WARMSTART_SUPPORT \ 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 GPL_DTC 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 GPL_DTC LLD 231.else 232# Everything else disables Clang, and uses GCC instead. 233__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC 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*} != "" 238BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB 239.endif 240.if ${__T:Mriscv*} != "" 241BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V" 242BROKEN_OPTIONS+=TESTS # "undefined reference to `_Unwind_Resume'" 243BROKEN_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" 263BROKEN_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_NO_OPTIONS+=GDB_LIBEXEC 270.else 271__DEFAULT_YES_OPTIONS+=GDB_LIBEXEC 272.endif 273# Only doing soft float API stuff on armv6 274.if ${__T} != "armv6" 275BROKEN_OPTIONS+=LIBSOFT 276.endif 277.if ${__T:Mmips*} 278BROKEN_OPTIONS+=SSP 279.endif 280.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*} 281BROKEN_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}) 301MK_${var}:= no 302.else 303MK_${var}:= yes 304.endif 305.else 306.if defined(WITH_${var}) 307MK_${var}:= yes 308.else 309MK_${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} 320MK_LLVM_LIBUNWIND:= no 321.endif 322 323.if ${MK_BINUTILS} == "no" 324MK_GDB:= no 325.endif 326 327.if ${MK_CAPSICUM} == "no" 328MK_CASPER:= no 329.endif 330 331.if ${MK_LIBPTHREAD} == "no" 332MK_LIBTHR:= no 333.endif 334 335.if ${MK_LDNS} == "no" 336MK_LDNS_UTILS:= no 337MK_UNBOUND:= no 338.endif 339 340.if ${MK_SOURCELESS} == "no" 341MK_SOURCELESS_HOST:= no 342MK_SOURCELESS_UCODE:= no 343.endif 344 345.if ${MK_CDDL} == "no" 346MK_ZFS:= no 347MK_CTF:= no 348.endif 349 350.if ${MK_CRYPT} == "no" 351MK_OPENSSL:= no 352MK_OPENSSH:= no 353MK_KERBEROS:= no 354.endif 355 356.if ${MK_CXX} == "no" 357MK_CLANG:= no 358MK_GNUCXX:= no 359MK_TESTS:= no 360.endif 361 362.if ${MK_DIALOG} == "no" 363MK_BSDINSTALL:= no 364.endif 365 366.if ${MK_MAIL} == "no" 367MK_MAILWRAPPER:= no 368MK_SENDMAIL:= no 369MK_DMAGENT:= no 370.endif 371 372.if ${MK_NETGRAPH} == "no" 373MK_ATM:= no 374MK_BLUETOOTH:= no 375.endif 376 377.if ${MK_OPENSSL} == "no" 378MK_OPENSSH:= no 379MK_KERBEROS:= no 380.endif 381 382.if ${MK_PF} == "no" 383MK_AUTHPF:= no 384.endif 385 386.if ${MK_TESTS} == "no" 387MK_DTRACE_TESTS:= no 388.endif 389 390.if ${MK_CROSS_COMPILER} == "no" 391MK_BINUTILS_BOOTSTRAP:= no 392MK_CLANG_BOOTSTRAP:= no 393MK_ELFTOOLCHAIN_BOOTSTRAP:= no 394MK_GCC_BOOTSTRAP:= no 395.endif 396 397.if ${MK_TOOLCHAIN} == "no" 398MK_BINUTILS:= no 399MK_CLANG:= no 400MK_GCC:= no 401MK_GDB:= no 402MK_INCLUDES:= no 403MK_LLD:= no 404MK_LLDB:= no 405.endif 406 407.if ${MK_CLANG} == "no" 408MK_CLANG_EXTRAS:= no 409MK_CLANG_FULL:= no 410.endif 411 412# 413# MK_* options whose default value depends on another option. 414# 415.for vv in \ 416 GSSAPI/KERBEROS \ 417 MAN_UTILS/MAN 418.if defined(WITH_${vv:H}) 419MK_${vv:H}:= yes 420.elif defined(WITHOUT_${vv:H}) 421MK_${vv:H}:= no 422.else 423MK_${vv:H}:= ${MK_${vv:T}} 424.endif 425.endfor 426 427# 428# Set defaults for the MK_*_SUPPORT variables. 429# 430 431# 432# MK_*_SUPPORT options which default to "yes" unless their corresponding 433# MK_* variable is set to "no". 434# 435.for var in \ 436 BLACKLIST \ 437 BZIP2 \ 438 INET \ 439 INET6 \ 440 KERBEROS \ 441 KVM \ 442 NETGRAPH \ 443 PAM \ 444 TESTS \ 445 WIRELESS 446.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" 447MK_${var}_SUPPORT:= no 448.else 449MK_${var}_SUPPORT:= yes 450.endif 451.endfor 452 453.if !${COMPILER_FEATURES:Mc++11} 454MK_LLDB:= no 455.endif 456 457# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case. 458# while in theory we could build it with that, we don't want to do 459# that since it creates too much confusion for too little gain. 460# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too 461# to prevent Makefile.inc1 from bootstrapping unneeded dependencies 462# and to support 'make delete-old' when supplying an external toolchain. 463.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800 464MK_GNUCXX:=no 465MK_GCC:=no 466.endif 467 468.endif # !target(__<src.opts.mk>__) 469