Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/mk Make MKSOFTFLOAT = yes for ARM (since arm is softfl...



details:   https://anonhg.NetBSD.org/src/rev/6eb33195430e
branches:  trunk
changeset: 783879:6eb33195430e
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Jan 11 12:55:29 2013 +0000

description:
Make MKSOFTFLOAT = yes for ARM (since arm is softfloat by default).

diffstat:

 share/mk/bsd.own.mk |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 03d3b6238a60 -r 6eb33195430e share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Fri Jan 11 12:47:38 2013 +0000
+++ b/share/mk/bsd.own.mk       Fri Jan 11 12:55:29 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.716 2012/11/30 17:51:50 joerg Exp $
+#      $NetBSD: bsd.own.mk,v 1.717 2013/01/11 12:55:29 matt Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -788,10 +788,11 @@
 
 #
 # Default mips64 to softfloat now.
+# arm is always softfloat
 # emips is always softfloat.
 #
 .if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" || \
-    ${MACHINE} == "emips"
+    ${MACHINE_CPU} == "arm" || ${MACHINE} == "emips"
 MKSOFTFLOAT?=  yes
 .endif
 



Home | Main Index | Thread Index | Old Index