git: 577075538cef - main - bsd.endian.mk: Remove mips
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 03 Jan 2022 15:00:55 UTC
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