git: d889875b7841 - main - bsd.opts.mk: Remove mips support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 03 Jan 2022 15:00:48 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=d889875b784143fb98a577d366f1bccc868c8150
commit d889875b784143fb98a577d366f1bccc868c8150
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-01-02 00:59:31 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-01-03 15:00:08 +0000
bsd.opts.mk: Remove mips support
We don't need to list all the 32-bit mips variants here anymore.
Sponsored by: Netflix
---
share/mk/bsd.opts.mk | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/share/mk/bsd.opts.mk b/share/mk/bsd.opts.mk
index 68de435ef358..c3c29962b2f5 100644
--- a/share/mk/bsd.opts.mk
+++ b/share/mk/bsd.opts.mk
@@ -96,10 +96,7 @@ __DEFAULT_DEPENDENT_OPTIONS = \
# some memory-hungry workloads.
#
.if ${MACHINE_ARCH} == "armv6" || ${MACHINE_ARCH} == "armv7" \
- || ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "mips" \
- || ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipselhf" \
- || ${MACHINE_ARCH} == "mipshf" || ${MACHINE_ARCH} == "mipsn32" \
- || ${MACHINE_ARCH} == "mipsn32el" || ${MACHINE_ARCH} == "powerpc" \
+ || ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc" \
|| ${MACHINE_ARCH} == "powerpcspe"
__DEFAULT_NO_OPTIONS+= PIE
.else