Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Jan 2022 15:00:55 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 577075538cef - main - bsd.endian.mk: Remove mips
Message-ID:  <202201031500.203F0tMP056801@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=577075538cef43e28f0f676c8d9c5b1222a93965

commit 577075538cef43e28f0f676c8d9c5b1222a93965
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-01-02 01:10:21 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-01-03 15:00:09 +0000

    bsd.endian.mk: Remove mips
    
    Remove the enumeration of the big vs little endian platform names.
    
    Sponsored by:           Netflix
---
 share/mk/bsd.endian.mk | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/share/mk/bsd.endian.mk b/share/mk/bsd.endian.mk
index 667ee174c184..d77cb709e111 100644
--- a/share/mk/bsd.endian.mk
+++ b/share/mk/bsd.endian.mk
@@ -5,16 +5,14 @@
     ${MACHINE_ARCH} == "i386" || \
     (${MACHINE} == "arm" && ${MACHINE_ARCH:Marm*eb*} == "") || \
     ${MACHINE_ARCH} == "powerpc64le" || \
-    ${MACHINE_CPUARCH} == "riscv" || \
-    ${MACHINE_ARCH:Mmips*el*} != ""
+    ${MACHINE_CPUARCH} == "riscv"
 TARGET_ENDIANNESS= 1234
 CAP_MKDB_ENDIAN= -l
 LOCALEDEF_ENDIAN= -l
 .elif ${MACHINE_ARCH} == "powerpc" || \
     ${MACHINE_ARCH} == "powerpc64" || \
     ${MACHINE_ARCH} == "powerpcspe" || \
-    (${MACHINE} == "arm" && ${MACHINE_ARCH:Marm*eb*} != "") || \
-    ${MACHINE_ARCH:Mmips*} != ""
+    (${MACHINE} == "arm" && ${MACHINE_ARCH:Marm*eb*} != "")
 TARGET_ENDIANNESS= 4321
 CAP_MKDB_ENDIAN= -b
 LOCALEDEF_ENDIAN= -b



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202201031500.203F0tMP056801>