2014-05-06 04:21:48 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Option file for FreeBSD /usr/src builds.
|
|
|
|
#
|
|
|
|
# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf
|
|
|
|
# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no}
|
|
|
|
# with sensible (usually) defaults.
|
|
|
|
#
|
|
|
|
# Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
|
|
|
|
# are applicable for that Makefile (typically there are none, but sometimes there
|
|
|
|
# are exceptions). Recursive makes usually add MK_FOO=no for options that they wish
|
|
|
|
# to omit from that make.
|
|
|
|
#
|
2014-12-12 18:54:31 +00:00
|
|
|
# Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO
|
2014-05-06 04:21:48 +00:00
|
|
|
# variable.
|
|
|
|
#
|
2014-05-06 04:22:01 +00:00
|
|
|
# Makefiles may also assume that this file is included by src.opts.mk should it
|
2014-05-06 04:21:48 +00:00
|
|
|
# need variables defined there prior to the end of the Makefile where
|
|
|
|
# bsd.{subdir,lib.bin}.mk is traditionally included.
|
|
|
|
#
|
|
|
|
# The old-style YES_FOO and NO_FOO are being phased out. No new instances of them
|
|
|
|
# should be added. Old instances should be removed since they were just to
|
|
|
|
# bridge the gap between FreeBSD 4 and FreeBSD 5.
|
|
|
|
#
|
|
|
|
# Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
|
|
|
|
# exception is made for _WITHOUT_SRCONF which turns off this mechanism
|
2014-05-09 21:11:27 +00:00
|
|
|
# completely inside bsd.*.mk files).
|
2014-05-06 04:21:48 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
.if !target(__<src.opts.mk>__)
|
|
|
|
__<src.opts.mk>__:
|
|
|
|
|
2014-05-09 04:49:48 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
#
|
|
|
|
# Define MK_* variables (which are either "yes" or "no") for users
|
|
|
|
# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
|
|
|
|
# make(1) environment.
|
|
|
|
# These should be tested with `== "no"' or `!= "no"' in makefiles.
|
|
|
|
# The NO_* variables should only be set by makefiles for variables
|
|
|
|
# that haven't been converted over.
|
|
|
|
#
|
|
|
|
|
2018-02-27 17:36:01 +00:00
|
|
|
# These options are used by the src builds. Those listed in
|
|
|
|
# __DEFAULT_YES_OPTIONS default to 'yes' and will build unless turned
|
|
|
|
# off. __DEFAULT_NO_OPTIONS will default to 'no' and won't build
|
|
|
|
# unless turned on. Any options listed in 'BROKEN_OPTIONS' will be
|
|
|
|
# hard-wired to 'no'. "Broken" here means not working or
|
|
|
|
# not-appropriate and/or not supported. It doesn't imply something is
|
|
|
|
# wrong with the code. There's not a single good word for this, so
|
|
|
|
# BROKEN was selected as the least imperfect one considered at the
|
|
|
|
# time. Options are added to BROKEN_OPTIONS list on a per-arch basis.
|
|
|
|
# At this time, there's no provision for mutually incompatible options.
|
2014-05-06 04:21:48 +00:00
|
|
|
|
|
|
|
__DEFAULT_YES_OPTIONS = \
|
|
|
|
ACCT \
|
|
|
|
ACPI \
|
|
|
|
APM \
|
|
|
|
AT \
|
|
|
|
ATM \
|
|
|
|
AUDIT \
|
|
|
|
AUTHPF \
|
2015-01-26 07:15:49 +00:00
|
|
|
AUTOFS \
|
2015-01-26 06:44:48 +00:00
|
|
|
BHYVE \
|
2014-05-06 04:21:48 +00:00
|
|
|
BINUTILS \
|
2016-06-02 19:06:04 +00:00
|
|
|
BLACKLIST \
|
2014-05-06 04:21:48 +00:00
|
|
|
BLUETOOTH \
|
|
|
|
BOOT \
|
2015-02-04 10:19:32 +00:00
|
|
|
BOOTPARAMD \
|
|
|
|
BOOTPD \
|
2014-05-06 04:21:48 +00:00
|
|
|
BSD_CPIO \
|
2015-01-25 04:43:13 +00:00
|
|
|
BSDINSTALL \
|
2014-05-06 04:21:48 +00:00
|
|
|
BSNMP \
|
|
|
|
BZIP2 \
|
|
|
|
CALENDAR \
|
|
|
|
CAPSICUM \
|
2019-10-02 01:05:29 +00:00
|
|
|
CAROOT \
|
2014-05-06 04:21:48 +00:00
|
|
|
CASPER \
|
2015-01-25 04:52:48 +00:00
|
|
|
CCD \
|
2014-05-06 04:21:48 +00:00
|
|
|
CDDL \
|
2020-02-29 13:15:01 +00:00
|
|
|
CLANG \
|
2020-03-23 10:36:32 +00:00
|
|
|
CLANG_BOOTSTRAP \
|
|
|
|
CLANG_IS_CC \
|
2014-05-06 04:21:48 +00:00
|
|
|
CPP \
|
|
|
|
CROSS_COMPILER \
|
|
|
|
CRYPT \
|
2014-06-13 08:53:49 +00:00
|
|
|
CUSE \
|
2014-05-06 04:21:48 +00:00
|
|
|
CXX \
|
2018-10-21 06:52:10 +00:00
|
|
|
CXGBETOOL \
|
2016-09-27 18:08:38 +00:00
|
|
|
DIALOG \
|
2014-05-06 04:21:48 +00:00
|
|
|
DICT \
|
|
|
|
DMAGENT \
|
|
|
|
DYNAMICROOT \
|
2015-01-25 00:03:44 +00:00
|
|
|
EE \
|
2016-10-11 22:30:41 +00:00
|
|
|
EFI \
|
2015-08-17 10:48:55 +00:00
|
|
|
ELFTOOLCHAIN_BOOTSTRAP \
|
2014-05-06 04:21:48 +00:00
|
|
|
EXAMPLES \
|
|
|
|
FDT \
|
2015-02-04 10:24:40 +00:00
|
|
|
FILE \
|
2015-02-04 10:19:32 +00:00
|
|
|
FINGER \
|
2014-05-06 04:21:48 +00:00
|
|
|
FLOPPY \
|
|
|
|
FMTREE \
|
|
|
|
FORTH \
|
|
|
|
FP_LIBC \
|
|
|
|
FREEBSD_UPDATE \
|
2015-02-04 10:19:32 +00:00
|
|
|
FTP \
|
2014-05-06 04:21:48 +00:00
|
|
|
GAMES \
|
2017-04-25 18:08:56 +00:00
|
|
|
GDB \
|
2016-10-20 14:48:57 +00:00
|
|
|
GNU_DIFF \
|
|
|
|
GNU_GREP \
|
2020-01-06 18:25:58 +00:00
|
|
|
GOOGLETEST \
|
2014-05-06 04:21:48 +00:00
|
|
|
GPIO \
|
2015-01-26 06:27:07 +00:00
|
|
|
HAST \
|
2014-05-06 04:21:48 +00:00
|
|
|
HTML \
|
2018-10-21 06:52:10 +00:00
|
|
|
HYPERV \
|
2014-05-06 04:21:48 +00:00
|
|
|
ICONV \
|
|
|
|
INET \
|
|
|
|
INET6 \
|
2015-02-04 10:19:32 +00:00
|
|
|
INETD \
|
2014-05-06 04:21:48 +00:00
|
|
|
IPFILTER \
|
|
|
|
IPFW \
|
2015-01-25 04:20:11 +00:00
|
|
|
ISCSI \
|
2014-05-06 04:21:48 +00:00
|
|
|
JAIL \
|
|
|
|
KDUMP \
|
|
|
|
KVM \
|
|
|
|
LDNS \
|
|
|
|
LDNS_UTILS \
|
|
|
|
LEGACY_CONSOLE \
|
2020-03-18 21:28:55 +00:00
|
|
|
LIBCPLUSPLUS \
|
2014-05-06 04:21:48 +00:00
|
|
|
LIBPTHREAD \
|
|
|
|
LIBTHR \
|
2020-02-29 13:15:01 +00:00
|
|
|
LLD \
|
2020-03-27 01:00:03 +00:00
|
|
|
LLD_BOOTSTRAP \
|
|
|
|
LLD_IS_LD \
|
2020-04-06 01:27:17 +00:00
|
|
|
LLVM_ASSERTIONS \
|
2018-02-10 00:22:35 +00:00
|
|
|
LLVM_COV \
|
2019-12-10 18:50:50 +00:00
|
|
|
LLVM_TARGET_ALL \
|
2018-04-06 19:49:57 +00:00
|
|
|
LOADER_GELI \
|
2018-08-14 18:44:41 +00:00
|
|
|
LOADER_LUA \
|
2018-04-06 19:49:57 +00:00
|
|
|
LOADER_OFW \
|
|
|
|
LOADER_UBOOT \
|
2014-05-06 04:21:48 +00:00
|
|
|
LOCALES \
|
|
|
|
LOCATE \
|
|
|
|
LPR \
|
|
|
|
LS_COLORS \
|
|
|
|
LZMA_SUPPORT \
|
|
|
|
MAIL \
|
|
|
|
MAILWRAPPER \
|
|
|
|
MAKE \
|
2018-10-21 06:52:10 +00:00
|
|
|
MLX5TOOL \
|
2014-05-06 04:21:48 +00:00
|
|
|
NDIS \
|
|
|
|
NETCAT \
|
|
|
|
NETGRAPH \
|
|
|
|
NLS_CATALOGS \
|
|
|
|
NS_CACHING \
|
|
|
|
NTP \
|
2018-10-21 06:52:10 +00:00
|
|
|
NVME \
|
2018-07-20 23:53:20 +00:00
|
|
|
OFED \
|
2014-05-06 04:21:48 +00:00
|
|
|
OPENSSL \
|
|
|
|
PAM \
|
|
|
|
PF \
|
|
|
|
PKGBOOTSTRAP \
|
|
|
|
PMC \
|
|
|
|
PORTSNAP \
|
|
|
|
PPP \
|
|
|
|
QUOTAS \
|
2015-02-04 06:53:45 +00:00
|
|
|
RADIUS_SUPPORT \
|
2015-02-04 10:19:32 +00:00
|
|
|
RBOOTD \
|
2014-05-06 04:21:48 +00:00
|
|
|
RESCUE \
|
|
|
|
ROUTED \
|
|
|
|
SENDMAIL \
|
2018-07-04 17:18:35 +00:00
|
|
|
SERVICESDB \
|
2014-05-06 04:21:48 +00:00
|
|
|
SETUID_LOGIN \
|
Build toolchain components as dynamically linked executables by default
Summary:
Historically, we have built toolchain components such as cc, ld, etc as
statically linked executables. One of the reasons being that you could
sometimes save yourself from botched upgrades, by e.g. recompiling a
"known good" libc and reinstalling it.
In this day and age, we have boot environments, virtual machine
snapshots, cloud backups, and other much more reliable methods to
restore systems to working order. So I think the time is ripe to flip
this default, and link the toolchain components dynamically, just like
almost all other executables on FreeBSD.
Maybe at some point they can even become PIE executables by default! :)
Reviewed by: kib
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D22061
2019-10-23 17:02:45 +00:00
|
|
|
SHARED_TOOLCHAIN \
|
2014-05-06 04:21:48 +00:00
|
|
|
SHAREDOCS \
|
|
|
|
SOURCELESS \
|
|
|
|
SOURCELESS_HOST \
|
|
|
|
SOURCELESS_UCODE \
|
2019-10-07 19:05:05 +00:00
|
|
|
STATS \
|
2014-05-06 04:21:48 +00:00
|
|
|
SVNLITE \
|
|
|
|
SYSCONS \
|
2016-06-24 19:55:59 +00:00
|
|
|
SYSTEM_COMPILER \
|
2018-06-20 16:10:14 +00:00
|
|
|
SYSTEM_LINKER \
|
2015-01-25 04:37:44 +00:00
|
|
|
TALK \
|
2015-02-04 10:19:32 +00:00
|
|
|
TCP_WRAPPERS \
|
2014-05-06 04:21:48 +00:00
|
|
|
TCSH \
|
|
|
|
TELNET \
|
|
|
|
TEXTPROC \
|
2015-02-04 10:19:32 +00:00
|
|
|
TFTP \
|
2014-05-06 04:21:48 +00:00
|
|
|
UNBOUND \
|
|
|
|
USB \
|
|
|
|
UTMPX \
|
|
|
|
VI \
|
2014-06-30 00:20:12 +00:00
|
|
|
VT \
|
2014-05-06 04:21:48 +00:00
|
|
|
WIRELESS \
|
|
|
|
WPA_SUPPLICANT_EAPOL \
|
|
|
|
ZFS \
|
2019-01-05 22:45:20 +00:00
|
|
|
LOADER_ZFS \
|
2014-05-06 04:21:48 +00:00
|
|
|
ZONEINFO
|
|
|
|
|
|
|
|
__DEFAULT_NO_OPTIONS = \
|
2019-02-26 06:11:01 +00:00
|
|
|
BEARSSL \
|
2014-05-06 04:21:48 +00:00
|
|
|
BSD_GREP \
|
|
|
|
CLANG_EXTRAS \
|
2015-08-02 00:37:33 +00:00
|
|
|
DTRACE_TESTS \
|
2018-10-30 15:46:30 +00:00
|
|
|
EXPERIMENTAL \
|
bsdgrep: disable GNU_GREP_COMPAT by default
The GNU extension bits in the base system are old, no longer faithful
to upstream, and surprising in some regards. Switch to documenting
WITH_GNU_GREP_COMPAT and default GNU_GREP_COMPAT to OFF in the name of
good behavior.
According to http://www.regular-expressions.info, GNU extensions:
- Add missing quantifiers to BREs: \?, \+
- Add branching to BREs: \|
- Add backreferences (\1 through \9) to EREs
- Add \w, \W, \s, and \S corresponding to :alnum:, [^[:alnum:]],
:space:, and [^[:space:]] respectively
- Add word boundaries and anchors:
\b: word boundary
\B: not word boundary
\<: Strt of word
\>: End of word
\`: Start of subject string
\': End of subject string
These extensions are still available in /usr/bin/grep by default today,
as it is still GNU grep. As part of the bsdgrep migration plan these
extensions may be added to bsdgrep's regex support if necessary.
Submitted by: Kyle Evans <kevans91 at ksu.edu>
Reviewed by: cem
Differential Revision: https://reviews.freebsd.org/D10114
2017-04-21 14:50:29 +00:00
|
|
|
GNU_GREP_COMPAT \
|
2014-05-06 04:21:48 +00:00
|
|
|
HESIOD \
|
2016-01-03 04:32:04 +00:00
|
|
|
LIBSOFT \
|
2017-11-10 23:54:41 +00:00
|
|
|
LOADER_FIREWIRE \
|
2017-09-29 06:36:19 +00:00
|
|
|
LOADER_FORCE_LE \
|
2019-01-07 05:49:27 +00:00
|
|
|
LOADER_VERBOSE \
|
2019-04-03 03:57:37 +00:00
|
|
|
LOADER_VERIEXEC_PASS_MANIFEST \
|
2018-07-20 23:52:11 +00:00
|
|
|
OFED_EXTRA \
|
2014-05-06 04:21:48 +00:00
|
|
|
OPENLDAP \
|
2019-08-03 01:06:17 +00:00
|
|
|
REPRODUCIBLE_BUILD \
|
2017-04-19 20:45:46 +00:00
|
|
|
RPCBIND_WARMSTART_SUPPORT \
|
2014-05-06 04:21:48 +00:00
|
|
|
SORT_THREADS \
|
2016-05-21 01:32:23 +00:00
|
|
|
SVN \
|
2017-07-06 04:19:33 +00:00
|
|
|
ZONEINFO_LEAPSECONDS_SUPPORT \
|
2016-05-21 01:32:23 +00:00
|
|
|
|
2018-06-27 16:57:47 +00:00
|
|
|
# LEFT/RIGHT. Left options which default to "yes" unless their corresponding
|
|
|
|
# RIGHT option is disabled.
|
|
|
|
__DEFAULT_DEPENDENT_OPTIONS= \
|
|
|
|
CLANG_FULL/CLANG \
|
2019-02-26 06:11:01 +00:00
|
|
|
LOADER_VERIEXEC/BEARSSL \
|
2019-03-06 06:39:42 +00:00
|
|
|
LOADER_EFI_SECUREBOOT/LOADER_VERIEXEC \
|
2020-03-08 17:42:42 +00:00
|
|
|
LOADER_VERIEXEC_VECTX/LOADER_VERIEXEC \
|
2019-02-26 06:11:01 +00:00
|
|
|
VERIEXEC/BEARSSL \
|
2018-06-27 16:57:47 +00:00
|
|
|
|
|
|
|
# MK_*_SUPPORT options which default to "yes" unless their corresponding
|
|
|
|
# MK_* variable is set to "no".
|
|
|
|
#
|
|
|
|
.for var in \
|
|
|
|
BLACKLIST \
|
|
|
|
BZIP2 \
|
|
|
|
INET \
|
|
|
|
INET6 \
|
|
|
|
KERBEROS \
|
|
|
|
KVM \
|
|
|
|
NETGRAPH \
|
|
|
|
PAM \
|
|
|
|
TESTS \
|
|
|
|
WIRELESS
|
|
|
|
__DEFAULT_DEPENDENT_OPTIONS+= ${var}_SUPPORT/${var}
|
|
|
|
.endfor
|
2014-05-06 04:21:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Default behaviour of some options depends on the architecture. Unfortunately
|
|
|
|
# this means that we have to test TARGET_ARCH (the buildworld case) as well
|
|
|
|
# as MACHINE_ARCH (the non-buildworld case). Normally TARGET_ARCH is not
|
|
|
|
# used at all in bsd.*.mk, but we have to make an exception here if we want
|
|
|
|
# to allow defaults for some things like clang to vary by target architecture.
|
|
|
|
# Additional, per-target behavior should be rarely added only after much
|
|
|
|
# gnashing of teeth and grinding of gears.
|
|
|
|
#
|
|
|
|
.if defined(TARGET_ARCH)
|
|
|
|
__T=${TARGET_ARCH}
|
|
|
|
.else
|
|
|
|
__T=${MACHINE_ARCH}
|
|
|
|
.endif
|
Since clang 3.5.0 and later must be built by a compiler with C++11
support, make this explicit in src.opts.mk, by updating the default
settings.
The defaults become as follows:
* If the host compiler is not C++11 capable, use gcc and disable clang.
* On x86, enable clang, make it the default cc, and disable gcc.
* On little-endian ARM, enable clang, but not the full build, make it
the default cc, and disable gcc.
* On PowerPC, enable clang, but enable gcc and make that the default cc.
* On everything else, use gcc, and disable clang.
This can be amended later, if we get e.g. sparc64 or big-endian ARM
working with clang.
Reviewed by: imp, brooks
Differential Revision: https://reviews.freebsd.org/D1294
2014-12-10 22:33:57 +00:00
|
|
|
|
2018-06-27 16:57:51 +00:00
|
|
|
# All supported backends for LLVM_TARGET_XXX
|
|
|
|
__LLVM_TARGETS= \
|
|
|
|
aarch64 \
|
|
|
|
arm \
|
|
|
|
mips \
|
|
|
|
powerpc \
|
2019-11-12 21:26:50 +00:00
|
|
|
riscv \
|
2018-06-27 16:57:51 +00:00
|
|
|
x86
|
2020-03-21 00:01:06 +00:00
|
|
|
__LLVM_TARGET_FILT= C/(amd64|i386)/x86/:C/powerpc.*/powerpc/:C/armv[67]/arm/:C/riscv.*/riscv/:C/mips.*/mips/
|
2018-06-27 21:36:57 +00:00
|
|
|
.for __llt in ${__LLVM_TARGETS}
|
2019-12-10 18:50:50 +00:00
|
|
|
# Default enable the given TARGET's LLVM_TARGET support
|
2020-03-21 00:01:06 +00:00
|
|
|
.if ${__T:${__LLVM_TARGET_FILT}} == ${__llt}
|
2019-12-10 18:50:50 +00:00
|
|
|
__DEFAULT_YES_OPTIONS+= LLVM_TARGET_${__llt:${__LLVM_TARGET_FILT}:tu}
|
2018-06-27 21:36:57 +00:00
|
|
|
# aarch64 needs arm for -m32 support.
|
2020-03-21 00:01:06 +00:00
|
|
|
.elif ${__T} == "aarch64" && ${__llt:Marm*} != ""
|
2018-06-27 21:36:57 +00:00
|
|
|
__DEFAULT_DEPENDENT_OPTIONS+= LLVM_TARGET_ARM/LLVM_TARGET_AARCH64
|
2019-12-10 18:50:50 +00:00
|
|
|
# Default the rest of the LLVM_TARGETs to the value of MK_LLVM_TARGET_ALL.
|
2018-06-27 16:57:51 +00:00
|
|
|
.else
|
2018-06-27 21:36:57 +00:00
|
|
|
__DEFAULT_DEPENDENT_OPTIONS+= LLVM_TARGET_${__llt:${__LLVM_TARGET_FILT}:tu}/LLVM_TARGET_ALL
|
2018-06-27 16:57:51 +00:00
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2018-08-09 21:28:31 +00:00
|
|
|
__DEFAULT_NO_OPTIONS+=LLVM_TARGET_BPF
|
|
|
|
|
Since clang 3.5.0 and later must be built by a compiler with C++11
support, make this explicit in src.opts.mk, by updating the default
settings.
The defaults become as follows:
* If the host compiler is not C++11 capable, use gcc and disable clang.
* On x86, enable clang, make it the default cc, and disable gcc.
* On little-endian ARM, enable clang, but not the full build, make it
the default cc, and disable gcc.
* On PowerPC, enable clang, but enable gcc and make that the default cc.
* On everything else, use gcc, and disable clang.
This can be amended later, if we get e.g. sparc64 or big-endian ARM
working with clang.
Reviewed by: imp, brooks
Differential Revision: https://reviews.freebsd.org/D1294
2014-12-10 22:33:57 +00:00
|
|
|
.include <bsd.compiler.mk>
|
2015-10-24 04:03:32 +00:00
|
|
|
|
2015-12-08 19:19:26 +00:00
|
|
|
# In-tree binutils/gcc are older versions without modern architecture support.
|
2016-11-16 15:21:32 +00:00
|
|
|
.if ${__T} == "aarch64" || ${__T:Mriscv*} != ""
|
2020-02-29 03:25:51 +00:00
|
|
|
BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GDB
|
2015-03-19 13:53:47 +00:00
|
|
|
.endif
|
2020-03-27 01:00:03 +00:00
|
|
|
.if ${__T} == "amd64" || ${__T} == "i386"
|
2020-01-19 19:56:05 +00:00
|
|
|
__DEFAULT_YES_OPTIONS+=BINUTILS_BOOTSTRAP
|
|
|
|
.else
|
|
|
|
__DEFAULT_NO_OPTIONS+=BINUTILS_BOOTSTRAP
|
|
|
|
.endif
|
2018-07-26 14:15:04 +00:00
|
|
|
.if ${__T:Mriscv*} != ""
|
|
|
|
BROKEN_OPTIONS+=OFED
|
|
|
|
.endif
|
2017-08-11 20:11:43 +00:00
|
|
|
.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "i386"
|
2017-01-26 02:22:23 +00:00
|
|
|
__DEFAULT_YES_OPTIONS+=LLDB
|
2015-12-16 19:23:10 +00:00
|
|
|
.else
|
2017-01-26 02:22:23 +00:00
|
|
|
__DEFAULT_NO_OPTIONS+=LLDB
|
2015-12-16 19:23:10 +00:00
|
|
|
.endif
|
2019-11-07 22:58:10 +00:00
|
|
|
# LIB32 is supported on amd64, mips64, and powerpc64
|
2019-11-07 23:54:40 +00:00
|
|
|
.if (${__T} == "amd64" || ${__T:Mmips64*} || ${__T} == "powerpc64")
|
2019-11-07 22:58:10 +00:00
|
|
|
__DEFAULT_YES_OPTIONS+=LIB32
|
|
|
|
.else
|
|
|
|
BROKEN_OPTIONS+=LIB32
|
|
|
|
.endif
|
2017-10-23 07:56:56 +00:00
|
|
|
# Only doing soft float API stuff on armv6 and armv7
|
2017-10-05 23:01:33 +00:00
|
|
|
.if ${__T} != "armv6" && ${__T} != "armv7"
|
2016-01-03 04:32:04 +00:00
|
|
|
BROKEN_OPTIONS+=LIBSOFT
|
|
|
|
.endif
|
2016-09-29 13:38:14 +00:00
|
|
|
.if ${__T:Mmips*}
|
2020-02-09 18:53:53 +00:00
|
|
|
# GOOGLETEST cannot currently be compiled on mips due to external circumstances.
|
|
|
|
# Notably, the freebsd-gcc port isn't linking in libgcc so we end up trying ot
|
|
|
|
# link to a hidden symbol. LLVM would successfully link this in, but some of
|
|
|
|
# the mips variants are broken under LLVM until LLVM 10. GOOGLETEST should be
|
|
|
|
# marked no longer broken with the switch to LLVM.
|
|
|
|
BROKEN_OPTIONS+=GOOGLETEST SSP
|
2016-09-27 09:44:30 +00:00
|
|
|
.endif
|
2020-02-26 18:49:20 +00:00
|
|
|
# EFI doesn't exist on mips, powerpc, or riscv.
|
|
|
|
.if ${__T:Mmips*} || ${__T:Mpowerpc*} || ${__T:Mriscv*}
|
2018-03-01 19:50:55 +00:00
|
|
|
BROKEN_OPTIONS+=EFI
|
2016-10-11 22:30:41 +00:00
|
|
|
.endif
|
2020-02-26 18:49:20 +00:00
|
|
|
# OFW is only for powerpc, exclude others
|
|
|
|
.if ${__T:Mpowerpc*} == ""
|
2018-03-01 19:50:55 +00:00
|
|
|
BROKEN_OPTIONS+=LOADER_OFW
|
|
|
|
.endif
|
|
|
|
# UBOOT is only for arm, mips and powerpc, exclude others
|
|
|
|
.if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == ""
|
|
|
|
BROKEN_OPTIONS+=LOADER_UBOOT
|
|
|
|
.endif
|
2020-02-26 18:49:20 +00:00
|
|
|
# GELI and Lua in loader currently cause boot failures on powerpc.
|
2018-10-11 00:54:39 +00:00
|
|
|
# Further debugging is required -- probably they are just broken on big
|
|
|
|
# endian systems generically (they jump to null pointers or try to read
|
|
|
|
# crazy high addresses, which is typical of endianness problems).
|
2020-02-26 18:49:20 +00:00
|
|
|
.if ${__T:Mpowerpc*}
|
2018-08-22 15:29:54 +00:00
|
|
|
BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
|
|
|
|
.endif
|
2018-03-01 19:50:55 +00:00
|
|
|
|
2017-08-10 13:01:19 +00:00
|
|
|
.if ${__T:Mmips64*}
|
|
|
|
# profiling won't work on MIPS64 because there is only assembly for o32
|
|
|
|
BROKEN_OPTIONS+=PROFILE
|
|
|
|
.endif
|
2018-10-21 06:52:10 +00:00
|
|
|
.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \
|
2020-02-26 18:49:20 +00:00
|
|
|
${__T} != "powerpc64"
|
2018-10-21 06:52:10 +00:00
|
|
|
BROKEN_OPTIONS+=CXGBETOOL
|
|
|
|
BROKEN_OPTIONS+=MLX5TOOL
|
2017-03-03 03:11:58 +00:00
|
|
|
.endif
|
|
|
|
|
2018-09-18 16:06:24 +00:00
|
|
|
# HyperV is currently x86-only
|
2018-10-21 06:52:10 +00:00
|
|
|
.if ${__T} != "amd64" && ${__T} != "i386"
|
|
|
|
BROKEN_OPTIONS+=HYPERV
|
2018-09-18 16:06:24 +00:00
|
|
|
.endif
|
|
|
|
|
2019-08-07 16:19:06 +00:00
|
|
|
# NVME is only aarch64, x86 and powerpc64
|
2019-09-26 18:24:04 +00:00
|
|
|
.if ${__T} != "aarch64" && ${__T} != "amd64" && ${__T} != "i386" && \
|
|
|
|
${__T} != "powerpc64"
|
2018-10-21 06:52:10 +00:00
|
|
|
BROKEN_OPTIONS+=NVME
|
2018-06-14 01:15:19 +00:00
|
|
|
.endif
|
|
|
|
|
2020-03-18 21:15:45 +00:00
|
|
|
.if ${__T} == "amd64" || ${__T} == "i386" || ${__T} == "powerpc64"
|
2019-03-16 15:45:15 +00:00
|
|
|
__DEFAULT_YES_OPTIONS+=OPENMP
|
|
|
|
.else
|
|
|
|
__DEFAULT_NO_OPTIONS+=OPENMP
|
|
|
|
.endif
|
2018-12-03 09:40:37 +00:00
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
.include <bsd.mkopt.mk>
|
|
|
|
|
|
|
|
#
|
|
|
|
# Force some options off if their dependencies are off.
|
|
|
|
# Order is somewhat important.
|
|
|
|
#
|
2016-12-10 13:29:51 +00:00
|
|
|
.if ${MK_CAPSICUM} == "no"
|
|
|
|
MK_CASPER:= no
|
|
|
|
.endif
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
.if ${MK_LIBPTHREAD} == "no"
|
|
|
|
MK_LIBTHR:= no
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_SOURCELESS} == "no"
|
|
|
|
MK_SOURCELESS_HOST:= no
|
|
|
|
MK_SOURCELESS_UCODE:= no
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_CDDL} == "no"
|
|
|
|
MK_ZFS:= no
|
2019-01-05 22:45:20 +00:00
|
|
|
MK_LOADER_ZFS:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
MK_CTF:= no
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_CRYPT} == "no"
|
|
|
|
MK_OPENSSL:= no
|
|
|
|
MK_OPENSSH:= no
|
|
|
|
MK_KERBEROS:= no
|
2020-01-10 22:00:39 +00:00
|
|
|
MK_KERBEROS_SUPPORT:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_CXX} == "no"
|
|
|
|
MK_CLANG:= no
|
2020-01-03 18:11:55 +00:00
|
|
|
MK_GOOGLETEST:= no
|
2016-08-22 17:45:30 +00:00
|
|
|
MK_TESTS:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
2016-09-27 18:08:38 +00:00
|
|
|
.if ${MK_DIALOG} == "no"
|
|
|
|
MK_BSDINSTALL:= no
|
|
|
|
.endif
|
|
|
|
|
2020-01-03 18:20:03 +00:00
|
|
|
.if ${MK_FILE} == "no"
|
|
|
|
MK_SVNLITE:= no
|
|
|
|
.endif
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
.if ${MK_MAIL} == "no"
|
|
|
|
MK_MAILWRAPPER:= no
|
|
|
|
MK_SENDMAIL:= no
|
|
|
|
MK_DMAGENT:= no
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_NETGRAPH} == "no"
|
|
|
|
MK_ATM:= no
|
|
|
|
MK_BLUETOOTH:= no
|
|
|
|
.endif
|
|
|
|
|
2017-08-02 21:38:15 +00:00
|
|
|
.if ${MK_NLS} == "no"
|
|
|
|
MK_NLS_CATALOGS:= no
|
|
|
|
.endif
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
.if ${MK_OPENSSL} == "no"
|
2020-01-17 17:53:13 +00:00
|
|
|
MK_DMAGENT:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
MK_OPENSSH:= no
|
|
|
|
MK_KERBEROS:= no
|
2020-01-10 22:00:39 +00:00
|
|
|
MK_KERBEROS_SUPPORT:= no
|
2019-12-20 20:23:59 +00:00
|
|
|
MK_LDNS:= no
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_LDNS} == "no"
|
|
|
|
MK_LDNS_UTILS:= no
|
|
|
|
MK_UNBOUND:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_PF} == "no"
|
|
|
|
MK_AUTHPF:= no
|
|
|
|
.endif
|
|
|
|
|
2018-07-20 23:52:11 +00:00
|
|
|
.if ${MK_OFED} == "no"
|
|
|
|
MK_OFED_EXTRA:= no
|
|
|
|
.endif
|
|
|
|
|
2018-05-16 01:33:48 +00:00
|
|
|
.if ${MK_PORTSNAP} == "no"
|
|
|
|
# freebsd-update depends on phttpget from portsnap
|
|
|
|
MK_FREEBSD_UPDATE:= no
|
|
|
|
.endif
|
|
|
|
|
2015-08-02 00:37:33 +00:00
|
|
|
.if ${MK_TESTS} == "no"
|
|
|
|
MK_DTRACE_TESTS:= no
|
2019-02-20 00:12:24 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_TESTS_SUPPORT} == "no"
|
2019-02-19 22:40:32 +00:00
|
|
|
MK_GOOGLETEST:= no
|
2015-08-02 00:37:33 +00:00
|
|
|
.endif
|
|
|
|
|
2017-07-06 04:19:33 +00:00
|
|
|
.if ${MK_ZONEINFO} == "no"
|
|
|
|
MK_ZONEINFO_LEAPSECONDS_SUPPORT:= no
|
|
|
|
.endif
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
.if ${MK_CROSS_COMPILER} == "no"
|
|
|
|
MK_BINUTILS_BOOTSTRAP:= no
|
|
|
|
MK_CLANG_BOOTSTRAP:= no
|
2015-08-17 10:48:55 +00:00
|
|
|
MK_ELFTOOLCHAIN_BOOTSTRAP:= no
|
2018-03-07 17:33:41 +00:00
|
|
|
MK_LLD_BOOTSTRAP:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_TOOLCHAIN} == "no"
|
|
|
|
MK_BINUTILS:= no
|
|
|
|
MK_CLANG:= no
|
|
|
|
MK_GDB:= no
|
2014-11-18 17:06:44 +00:00
|
|
|
MK_INCLUDES:= no
|
2017-04-10 18:21:30 +00:00
|
|
|
MK_LLD:= no
|
2016-03-25 22:36:29 +00:00
|
|
|
MK_LLDB:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_CLANG} == "no"
|
|
|
|
MK_CLANG_EXTRAS:= no
|
|
|
|
MK_CLANG_FULL:= no
|
2018-02-10 00:22:35 +00:00
|
|
|
MK_LLVM_COV:= no
|
2014-05-06 04:21:48 +00:00
|
|
|
.endif
|
|
|
|
|
2019-04-03 03:57:37 +00:00
|
|
|
.if ${MK_LOADER_VERIEXEC} == "no"
|
|
|
|
MK_LOADER_VERIEXEC_PASS_MANIFEST := no
|
|
|
|
.endif
|
|
|
|
|
2017-01-02 19:55:18 +00:00
|
|
|
#
|
|
|
|
# MK_* options whose default value depends on another option.
|
|
|
|
#
|
|
|
|
.for vv in \
|
|
|
|
GSSAPI/KERBEROS \
|
|
|
|
MAN_UTILS/MAN
|
|
|
|
.if defined(WITH_${vv:H})
|
|
|
|
MK_${vv:H}:= yes
|
|
|
|
.elif defined(WITHOUT_${vv:H})
|
|
|
|
MK_${vv:H}:= no
|
|
|
|
.else
|
|
|
|
MK_${vv:H}:= ${MK_${vv:T}}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2014-05-06 04:21:48 +00:00
|
|
|
#
|
|
|
|
# Set defaults for the MK_*_SUPPORT variables.
|
|
|
|
#
|
|
|
|
|
2014-10-21 20:00:49 +00:00
|
|
|
.endif # !target(__<src.opts.mk>__)
|