svn commit: r262404 - head/sys/boot/fdt

Robert Watson rwatson at FreeBSD.org
Sun Feb 23 22:12:26 UTC 2014


Author: rwatson
Date: Sun Feb 23 22:12:25 2014
New Revision: 262404
URL: http://svnweb.freebsd.org/changeset/base/262404

Log:
  When building FDT on MIPS, use softfloat.
  
  MFC after:	3 weeks
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/boot/fdt/Makefile

Modified: head/sys/boot/fdt/Makefile
==============================================================================
--- head/sys/boot/fdt/Makefile	Sun Feb 23 22:11:26 2014	(r262403)
+++ head/sys/boot/fdt/Makefile	Sun Feb 23 22:12:25 2014	(r262404)
@@ -16,7 +16,7 @@ CFLAGS+=	-I${.CURDIR}/../../contrib/libf
 
 CFLAGS+=	-ffreestanding
 
-.if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
+.if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "mips"
 CFLAGS+=	-msoft-float
 .endif
 


More information about the svn-src-all mailing list