svn commit: r356339 - head/share/mk

John Baldwin jhb at FreeBSD.org
Fri Jan 3 23:31:38 UTC 2020


Author: jhb
Date: Fri Jan  3 23:31:38 2020
New Revision: 356339
URL: https://svnweb.freebsd.org/changeset/base/356339

Log:
  Set correct lib32 MACHINE_ARCH for mips64el*.
  
  Use "mipsel" instead of "mips" as the 32-bit MACHINE_ARCH when
  building lib32 for little-endian 64-bit MIPS targets.  This fixes an
  error where some objects were compiled as LE and others compiled as BE
  causing a link error for rtld32.
  
  Reviewed by:	emaste
  Sponsored by:	DARPA
  Differential Revision:	https://reviews.freebsd.org/D23028

Modified:
  head/share/mk/bsd.compat.mk

Modified: head/share/mk/bsd.compat.mk
==============================================================================
--- head/share/mk/bsd.compat.mk	Fri Jan  3 22:47:31 2020	(r356338)
+++ head/share/mk/bsd.compat.mk	Fri Jan  3 23:31:38 2020	(r356339)
@@ -79,10 +79,11 @@ LIB32CPUFLAGS=  -target mips-unknown-freebsd13.0
 .endif
 LIB32CPUFLAGS+= -mabi=32
 LIB32_MACHINE=	mips
-LIB32_MACHINE_ARCH=	mips
 .if ${COMPAT_ARCH:Mmips64el*} != ""
+LIB32_MACHINE_ARCH=	mipsel
 _EMULATION=	elf32ltsmip_fbsd
 .else
+LIB32_MACHINE_ARCH=	mips
 _EMULATION=	elf32btsmip_fbsd
 .endif
 LIB32WMAKEFLAGS= LD="${XLD} -m ${_EMULATION}"


More information about the svn-src-all mailing list