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