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 RBOOTD \ 148 RESCUE \ 149 ROUTED \ 150 SENDMAIL \ 151 SETUID_LOGIN \ 152 SHAREDOCS \ 153 SOURCELESS \ 154 SOURCELESS_HOST \ 155 SOURCELESS_UCODE \ 156 SVNLITE \ 157 SYSCONS \ 158 SYSTEM_COMPILER \ 159 TALK \ 160 TCP_WRAPPERS \ 161 TCSH \ 162 TELNET \ 163 TEXTPROC \ 164 TFTP \ 165 TIMED \ 166 UNBOUND \ 167 USB \ 168 UTMPX \ 169 VI \ 170 VT \ 171 WIRELESS \ 172 WPA_SUPPLICANT_EAPOL \ 173 ZFS \ 174 ZONEINFO 175 176__DEFAULT_NO_OPTIONS = \ 177 BSD_GREP \ 178 CLANG_EXTRAS \ 179 DTRACE_TESTS \ 180 GNU_GREP_COMPAT \ 181 HESIOD \ 182 LIBSOFT \ 183 NAND \ 184 OFED \ 185 OPENLDAP \ 186 RCMDS \ 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*} != "" 239BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB 240.endif 241.if ${__T:Mriscv*} != "" 242BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V" 243BROKEN_OPTIONS+=TESTS # "undefined reference to `_Unwind_Resume'" 244BROKEN_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" 264BROKEN_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 275.if ${__T} != "armv6" 276BROKEN_OPTIONS+=LIBSOFT 277.endif 278.if ${__T:Mmips*} 279BROKEN_OPTIONS+=SSP 280.endif 281.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*} 282BROKEN_OPTIONS+=EFI 283.endif 284.if ${__T:Mmips64*} 285# profiling won't work on MIPS64 because there is only assembly for o32 286BROKEN_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.include <bsd.mkopt.mk> 296 297# 298# MK_* options that default to "yes" if the compiler is a C++11 compiler. 299# 300.for var in \ 301 LIBCPLUSPLUS 302.if !defined(MK_${var}) 303.if ${COMPILER_FEATURES:Mc++11} 304.if defined(WITHOUT_${var}) 305MK_${var}:= no 306.else 307MK_${var}:= yes 308.endif 309.else 310.if defined(WITH_${var}) 311MK_${var}:= yes 312.else 313MK_${var}:= no 314.endif 315.endif 316.endif 317.endfor 318 319# 320# Force some options off if their dependencies are off. 321# Order is somewhat important. 322# 323.if !${COMPILER_FEATURES:Mc++11} 324MK_LLVM_LIBUNWIND:= no 325.endif 326 327.if ${MK_BINUTILS} == "no" 328MK_GDB:= no 329.endif 330 331.if ${MK_CAPSICUM} == "no" 332MK_CASPER:= no 333.endif 334 335.if ${MK_LIBPTHREAD} == "no" 336MK_LIBTHR:= no 337.endif 338 339.if ${MK_LDNS} == "no" 340MK_LDNS_UTILS:= no 341MK_UNBOUND:= no 342.endif 343 344.if ${MK_SOURCELESS} == "no" 345MK_SOURCELESS_HOST:= no 346MK_SOURCELESS_UCODE:= no 347.endif 348 349.if ${MK_CDDL} == "no" 350MK_ZFS:= no 351MK_CTF:= no 352.endif 353 354.if ${MK_CRYPT} == "no" 355MK_OPENSSL:= no 356MK_OPENSSH:= no 357MK_KERBEROS:= no 358.endif 359 360.if ${MK_CXX} == "no" 361MK_CLANG:= no 362MK_GNUCXX:= no 363MK_TESTS:= no 364.endif 365 366.if ${MK_DIALOG} == "no" 367MK_BSDINSTALL:= no 368.endif 369 370.if ${MK_MAIL} == "no" 371MK_MAILWRAPPER:= no 372MK_SENDMAIL:= no 373MK_DMAGENT:= no 374.endif 375 376.if ${MK_NETGRAPH} == "no" 377MK_ATM:= no 378MK_BLUETOOTH:= no 379.endif 380 381.if ${MK_NLS} == "no" 382MK_NLS_CATALOGS:= no 383.endif 384 385.if ${MK_OPENSSL} == "no" 386MK_OPENSSH:= no 387MK_KERBEROS:= no 388.endif 389 390.if ${MK_PF} == "no" 391MK_AUTHPF:= no 392.endif 393 394.if ${MK_TESTS} == "no" 395MK_DTRACE_TESTS:= no 396.endif 397 398.if ${MK_ZONEINFO} == "no" 399MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no 400MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no 401.endif 402 403.if ${MK_CROSS_COMPILER} == "no" 404MK_BINUTILS_BOOTSTRAP:= no 405MK_CLANG_BOOTSTRAP:= no 406MK_ELFTOOLCHAIN_BOOTSTRAP:= no 407MK_GCC_BOOTSTRAP:= no 408.endif 409 410.if ${MK_TOOLCHAIN} == "no" 411MK_BINUTILS:= no 412MK_CLANG:= no 413MK_GCC:= no 414MK_GDB:= no 415MK_INCLUDES:= no 416MK_LLD:= no 417MK_LLDB:= no 418.endif 419 420.if ${MK_CLANG} == "no" 421MK_CLANG_EXTRAS:= no 422MK_CLANG_FULL:= no 423.endif 424 425# 426# MK_* options whose default value depends on another option. 427# 428.for vv in \ 429 GSSAPI/KERBEROS \ 430 MAN_UTILS/MAN 431.if defined(WITH_${vv:H}) 432MK_${vv:H}:= yes 433.elif defined(WITHOUT_${vv:H}) 434MK_${vv:H}:= no 435.else 436MK_${vv:H}:= ${MK_${vv:T}} 437.endif 438.endfor 439 440# 441# Set defaults for the MK_*_SUPPORT variables. 442# 443 444# 445# MK_*_SUPPORT options which default to "yes" unless their corresponding 446# MK_* variable is set to "no". 447# 448.for var in \ 449 BLACKLIST \ 450 BZIP2 \ 451 INET \ 452 INET6 \ 453 KERBEROS \ 454 KVM \ 455 NETGRAPH \ 456 PAM \ 457 TESTS \ 458 WIRELESS 459.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" 460MK_${var}_SUPPORT:= no 461.else 462MK_${var}_SUPPORT:= yes 463.endif 464.endfor 465 466.if !${COMPILER_FEATURES:Mc++11} 467MK_LLDB:= no 468.endif 469 470# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case. 471# while in theory we could build it with that, we don't want to do 472# that since it creates too much confusion for too little gain. 473# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too 474# to prevent Makefile.inc1 from bootstrapping unneeded dependencies 475# and to support 'make delete-old' when supplying an external toolchain. 476.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800 477MK_GNUCXX:=no 478MK_GCC:=no 479.endif 480 481.endif # !target(__<src.opts.mk>__) 482