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. Those listed in 45# __DEFAULT_YES_OPTIONS default to 'yes' and will build unless turned 46# off. __DEFAULT_NO_OPTIONS will default to 'no' and won't build 47# unless turned on. Any options listed in 'BROKEN_OPTIONS' will be 48# hard-wired to 'no'. "Broken" here means not working or 49# not-appropriate and/or not supported. It doesn't imply something is 50# wrong with the code. There's not a single good word for this, so 51# BROKEN was selected as the least imperfect one considered at the 52# time. Options are added to BROKEN_OPTIONS list on a per-arch basis. 53# At this time, there's no provision for mutually incompatible options. 54 55__DEFAULT_YES_OPTIONS = \ 56 ACCT \ 57 ACPI \ 58 AMD \ 59 APM \ 60 AT \ 61 ATM \ 62 AUDIT \ 63 AUTHPF \ 64 AUTOFS \ 65 BHYVE \ 66 BINUTILS \ 67 BINUTILS_BOOTSTRAP \ 68 BLACKLIST \ 69 BLUETOOTH \ 70 BOOT \ 71 BOOTPARAMD \ 72 BOOTPD \ 73 BSD_CPIO \ 74 BSDINSTALL \ 75 BSNMP \ 76 BZIP2 \ 77 CALENDAR \ 78 CAPSICUM \ 79 CASPER \ 80 CCD \ 81 CDDL \ 82 CPP \ 83 CROSS_COMPILER \ 84 CRYPT \ 85 CTM \ 86 CUSE \ 87 CXX \ 88 DIALOG \ 89 DICT \ 90 DMAGENT \ 91 DYNAMICROOT \ 92 ED_CRYPTO \ 93 EE \ 94 EFI \ 95 ELFTOOLCHAIN_BOOTSTRAP \ 96 EXAMPLES \ 97 FDT \ 98 FILE \ 99 FINGER \ 100 FLOPPY \ 101 FMTREE \ 102 FORTH \ 103 FP_LIBC \ 104 FREEBSD_UPDATE \ 105 FTP \ 106 GAMES \ 107 GCOV \ 108 GDB \ 109 GNU_DIFF \ 110 GNU_GREP \ 111 GPIO \ 112 HAST \ 113 HTML \ 114 HYPERV \ 115 ICONV \ 116 INET \ 117 INET6 \ 118 INETD \ 119 IPFILTER \ 120 IPFW \ 121 ISCSI \ 122 JAIL \ 123 KDUMP \ 124 KVM \ 125 LDNS \ 126 LDNS_UTILS \ 127 LEGACY_CONSOLE \ 128 LIB32 \ 129 LIBPTHREAD \ 130 LIBTHR \ 131 LLVM_COV \ 132 LOADER_GELI \ 133 LOADER_OFW \ 134 LOADER_UBOOT \ 135 LOCALES \ 136 LOCATE \ 137 LPR \ 138 LS_COLORS \ 139 LZMA_SUPPORT \ 140 MAIL \ 141 MAILWRAPPER \ 142 MAKE \ 143 NDIS \ 144 NETCAT \ 145 NETGRAPH \ 146 NLS_CATALOGS \ 147 NS_CACHING \ 148 NTP \ 149 OPENSSL \ 150 PAM \ 151 PC_SYSINSTALL \ 152 PF \ 153 PKGBOOTSTRAP \ 154 PMC \ 155 PORTSNAP \ 156 PPP \ 157 QUOTAS \ 158 RADIUS_SUPPORT \ 159 RBOOTD \ 160 RESCUE \ 161 ROUTED \ 162 SENDMAIL \ 163 SETUID_LOGIN \ 164 SHAREDOCS \ 165 SOURCELESS \ 166 SOURCELESS_HOST \ 167 SOURCELESS_UCODE \ 168 SVNLITE \ 169 SYSCONS \ 170 SYSTEM_COMPILER \ 171 TALK \ 172 TCP_WRAPPERS \ 173 TCSH \ 174 TELNET \ 175 TEXTPROC \ 176 TFTP \ 177 TIMED \ 178 UNBOUND \ 179 USB \ 180 UTMPX \ 181 VI \ 182 VT \ 183 WIRELESS \ 184 WPA_SUPPLICANT_EAPOL \ 185 ZFS \ 186 ZONEINFO 187 188__DEFAULT_NO_OPTIONS = \ 189 BSD_GREP \ 190 CLANG_EXTRAS \ 191 DTRACE_TESTS \ 192 GNU_GREP_COMPAT \ 193 HESIOD \ 194 LIBSOFT \ 195 LOADER_FIREWIRE \ 196 LOADER_FORCE_LE \ 197 LOADER_LUA \ 198 NAND \ 199 OFED \ 200 OPENLDAP \ 201 REPRODUCIBLE_BUILD \ 202 RPCBIND_WARMSTART_SUPPORT \ 203 SHARED_TOOLCHAIN \ 204 SORT_THREADS \ 205 SVN \ 206 ZONEINFO_LEAPSECONDS_SUPPORT \ 207 ZONEINFO_OLD_TIMEZONES_SUPPORT \ 208 209 210# 211# Default behaviour of some options depends on the architecture. Unfortunately 212# this means that we have to test TARGET_ARCH (the buildworld case) as well 213# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not 214# used at all in bsd.*.mk, but we have to make an exception here if we want 215# to allow defaults for some things like clang to vary by target architecture. 216# Additional, per-target behavior should be rarely added only after much 217# gnashing of teeth and grinding of gears. 218# 219.if defined(TARGET_ARCH) 220__T=${TARGET_ARCH} 221.else 222__T=${MACHINE_ARCH} 223.endif 224.if defined(TARGET) 225__TT=${TARGET} 226.else 227__TT=${MACHINE} 228.endif 229 230.include <bsd.compiler.mk> 231# If the compiler is not C++11 capable, disable Clang and use GCC instead. 232# This means that architectures that have GCC 4.2 as default can not 233# build Clang without using an external compiler. 234 235.if ${COMPILER_FEATURES:Mc++11} && (${__T} == "aarch64" || \ 236 ${__T} == "amd64" || ${__TT} == "arm" || ${__T} == "i386") 237# Clang is enabled, and will be installed as the default /usr/bin/cc. 238__DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD 239__DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC 240.elif ${COMPILER_FEATURES:Mc++11} && ${__T:Mriscv*} == "" && ${__T} != "sparc64" 241# If an external compiler that supports C++11 is used as ${CC} and Clang 242# supports the target, then Clang is enabled but GCC is installed as the 243# default /usr/bin/cc. 244__DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX GPL_DTC LLD 245__DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC 246.else 247# Everything else disables Clang, and uses GCC instead. 248__DEFAULT_YES_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX GPL_DTC 249__DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC LLD 250.endif 251# In-tree binutils/gcc are older versions without modern architecture support. 252.if ${__T} == "aarch64" || ${__T:Mriscv*} != "" 253BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GCC GCC_BOOTSTRAP GDB 254.endif 255.if ${__T:Mriscv*} != "" 256BROKEN_OPTIONS+=PROFILE # "sorry, unimplemented: profiler support for RISC-V" 257BROKEN_OPTIONS+=TESTS # "undefined reference to `_Unwind_Resume'" 258BROKEN_OPTIONS+=CXX # "libcxxrt.so: undefined reference to `_Unwind_Resume_or_Rethrow'" 259.endif 260.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \ 261 ${__T:Mriscv*} != "" || ${__TT} == "mips" 262__DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND 263.else 264__DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND 265.endif 266.if ${__T} == "aarch64" || ${__T} == "amd64" 267__DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD 268.else 269__DEFAULT_NO_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD 270.endif 271.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" 272__DEFAULT_YES_OPTIONS+=LLDB 273.else 274__DEFAULT_NO_OPTIONS+=LLDB 275.endif 276# LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5 277.if ${__T} == "arm" || ${__T} == "armeb" 278BROKEN_OPTIONS+=LLDB 279.endif 280# GDB in base is generally less functional than GDB in ports. Ports GDB 281# does not yet contain kernel support for arm, and sparc64 kernel support 282# has not been tested. 283.if ${__T:Marm*} != "" || ${__T} == "sparc64" 284__DEFAULT_NO_OPTIONS+=GDB_LIBEXEC 285.else 286__DEFAULT_YES_OPTIONS+=GDB_LIBEXEC 287.endif 288# Only doing soft float API stuff on armv6 and armv7 289.if ${__T} != "armv6" && ${__T} != "armv7" 290BROKEN_OPTIONS+=LIBSOFT 291.endif 292.if ${__T:Mmips*} 293BROKEN_OPTIONS+=SSP 294.endif 295# EFI doesn't exist on mips, powerpc, sparc or riscv. 296.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Msparc64} || ${__T:Mriscv*} 297BROKEN_OPTIONS+=EFI 298.endif 299# GELI isn't supported on !x86 300.if ${__T} != "i386" && ${__T} != "amd64" 301BROKEN_OPTIONS+=LOADER_GELI 302.endif 303# OFW is only for powerpc and sparc64, exclude others 304.if ${__T:Mpowerpc*} == "" && ${__T:Msparc64} == "" 305BROKEN_OPTIONS+=LOADER_OFW 306.endif 307# UBOOT is only for arm, mips and powerpc, exclude others 308.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == "" 309BROKEN_OPTIONS+=LOADER_UBOOT 310.endif 311 312.if ${__T:Mmips64*} 313# profiling won't work on MIPS64 because there is only assembly for o32 314BROKEN_OPTIONS+=PROFILE 315.endif 316.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386" || \ 317 ${__T} == "powerpc64" || ${__T} == "sparc64" 318__DEFAULT_YES_OPTIONS+=CXGBETOOL 319__DEFAULT_YES_OPTIONS+=MLX5TOOL 320.else 321__DEFAULT_NO_OPTIONS+=CXGBETOOL 322__DEFAULT_NO_OPTIONS+=MLX5TOOL 323.endif 324 325# NVME is only x86 and powerpc64 326.if ${__T} == "amd64" || ${__T} == "i386" || ${__T} == "powerpc64" 327__DEFAULT_YES_OPTIONS+=NVME 328.else 329__DEFAULT_NO_OPTIONS+=NVME 330.endif 331 332.include <bsd.mkopt.mk> 333 334# 335# MK_* options that default to "yes" if the compiler is a C++11 compiler. 336# 337.for var in \ 338 LIBCPLUSPLUS 339.if !defined(MK_${var}) 340.if ${COMPILER_FEATURES:Mc++11} 341.if defined(WITHOUT_${var}) 342MK_${var}:= no 343.else 344MK_${var}:= yes 345.endif 346.else 347.if defined(WITH_${var}) 348MK_${var}:= yes 349.else 350MK_${var}:= no 351.endif 352.endif 353.endif 354.endfor 355 356# 357# Force some options off if their dependencies are off. 358# Order is somewhat important. 359# 360.if !${COMPILER_FEATURES:Mc++11} 361MK_LLVM_LIBUNWIND:= no 362.endif 363 364.if ${MK_BINUTILS} == "no" 365MK_GDB:= no 366.endif 367 368.if ${MK_CAPSICUM} == "no" 369MK_CASPER:= no 370.endif 371 372.if ${MK_LIBPTHREAD} == "no" 373MK_LIBTHR:= no 374.endif 375 376.if ${MK_LDNS} == "no" 377MK_LDNS_UTILS:= no 378MK_UNBOUND:= no 379.endif 380 381.if ${MK_SOURCELESS} == "no" 382MK_SOURCELESS_HOST:= no 383MK_SOURCELESS_UCODE:= no 384.endif 385 386.if ${MK_CDDL} == "no" 387MK_ZFS:= no 388MK_CTF:= no 389.endif 390 391.if ${MK_CRYPT} == "no" 392MK_OPENSSL:= no 393MK_OPENSSH:= no 394MK_KERBEROS:= no 395.endif 396 397.if ${MK_CXX} == "no" 398MK_CLANG:= no 399MK_GNUCXX:= no 400MK_TESTS:= no 401.endif 402 403.if ${MK_DIALOG} == "no" 404MK_BSDINSTALL:= no 405.endif 406 407.if ${MK_MAIL} == "no" 408MK_MAILWRAPPER:= no 409MK_SENDMAIL:= no 410MK_DMAGENT:= no 411.endif 412 413.if ${MK_NETGRAPH} == "no" 414MK_ATM:= no 415MK_BLUETOOTH:= no 416.endif 417 418.if ${MK_NLS} == "no" 419MK_NLS_CATALOGS:= no 420.endif 421 422.if ${MK_OPENSSL} == "no" 423MK_OPENSSH:= no 424MK_KERBEROS:= no 425.endif 426 427.if ${MK_PF} == "no" 428MK_AUTHPF:= no 429.endif 430 431.if ${MK_PORTSNAP} == "no" 432# freebsd-update depends on phttpget from portsnap 433MK_FREEBSD_UPDATE:= no 434.endif 435 436.if ${MK_TESTS} == "no" 437MK_DTRACE_TESTS:= no 438.endif 439 440.if ${MK_ZONEINFO} == "no" 441MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no 442MK_ZONEINFO_OLD_TIMEZONES_SUPPORT:= no 443.endif 444 445.if ${MK_CROSS_COMPILER} == "no" 446MK_BINUTILS_BOOTSTRAP:= no 447MK_CLANG_BOOTSTRAP:= no 448MK_ELFTOOLCHAIN_BOOTSTRAP:= no 449MK_GCC_BOOTSTRAP:= no 450MK_LLD_BOOTSTRAP:= no 451.endif 452 453.if ${MK_TOOLCHAIN} == "no" 454MK_BINUTILS:= no 455MK_CLANG:= no 456MK_GCC:= no 457MK_GDB:= no 458MK_INCLUDES:= no 459MK_LLD:= no 460MK_LLDB:= no 461.endif 462 463.if ${MK_CLANG} == "no" 464MK_CLANG_EXTRAS:= no 465MK_CLANG_FULL:= no 466MK_LLVM_COV:= no 467.endif 468 469# 470# MK_* options whose default value depends on another option. 471# 472.for vv in \ 473 GSSAPI/KERBEROS \ 474 MAN_UTILS/MAN 475.if defined(WITH_${vv:H}) 476MK_${vv:H}:= yes 477.elif defined(WITHOUT_${vv:H}) 478MK_${vv:H}:= no 479.else 480MK_${vv:H}:= ${MK_${vv:T}} 481.endif 482.endfor 483 484# 485# Set defaults for the MK_*_SUPPORT variables. 486# 487 488# 489# MK_*_SUPPORT options which default to "yes" unless their corresponding 490# MK_* variable is set to "no". 491# 492.for var in \ 493 BLACKLIST \ 494 BZIP2 \ 495 INET \ 496 INET6 \ 497 KERBEROS \ 498 KVM \ 499 NETGRAPH \ 500 PAM \ 501 TESTS \ 502 WIRELESS 503.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" 504MK_${var}_SUPPORT:= no 505.else 506MK_${var}_SUPPORT:= yes 507.endif 508.endfor 509 510.if !${COMPILER_FEATURES:Mc++11} 511MK_LLDB:= no 512.endif 513 514# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case. 515# while in theory we could build it with that, we don't want to do 516# that since it creates too much confusion for too little gain. 517# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too 518# to prevent Makefile.inc1 from bootstrapping unneeded dependencies 519# and to support 'make delete-old' when supplying an external toolchain. 520.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800 521MK_GNUCXX:=no 522MK_GCC:=no 523.endif 524 525.endif # !target(__<src.opts.mk>__) 526