svn commit: r283149 - head/sys/modules
Ed Maste
emaste at FreeBSD.org
Wed May 20 12:54:23 UTC 2015
Author: emaste
Date: Wed May 20 12:54:22 2015
New Revision: 283149
URL: https://svnweb.freebsd.org/changeset/base/283149
Log:
Avoid trying to build cxbge on 32-bit MIPS
It lacks required 64-bit atomics.
Reviewed by: imp (earlier version)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D2585
Modified:
head/sys/modules/Makefile
Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile Wed May 20 12:46:30 2015 (r283148)
+++ head/sys/modules/Makefile Wed May 20 12:54:22 2015 (r283149)
@@ -456,6 +456,7 @@ _txp= txp
.endif
.if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \
+ ${MACHINE_ARCH:C/mips(el)?/mips/} != "mips" && \
${MACHINE_ARCH} != "powerpc"
_cxgbe= cxgbe
.endif
More information about the svn-src-all
mailing list