svn commit: r257210 - head/sys/boot/arm/uboot

Andrew Turner andrew at FreeBSD.org
Sun Oct 27 14:27:12 UTC 2013


Author: andrew
Date: Sun Oct 27 14:27:11 2013
New Revision: 257210
URL: http://svnweb.freebsd.org/changeset/base/257210

Log:
  Always build ubldr as a soft-float binary as there is no support for VFP
  this early on in the boot process.

Modified:
  head/sys/boot/arm/uboot/Makefile

Modified: head/sys/boot/arm/uboot/Makefile
==============================================================================
--- head/sys/boot/arm/uboot/Makefile	Sun Oct 27 14:03:51 2013	(r257209)
+++ head/sys/boot/arm/uboot/Makefile	Sun Oct 27 14:27:11 2013	(r257210)
@@ -90,7 +90,7 @@ CFLAGS+=	-I.
 
 CLEANFILES+=	vers.c loader.help
 
-CFLAGS+=	-ffreestanding
+CFLAGS+=	-ffreestanding -msoft-float
 
 LDFLAGS=	-nostdlib -static
 LDFLAGS+=	-T ldscript.generated


More information about the svn-src-head mailing list