Module Name: src
Committed By: matt
Date: Wed Sep 3 19:25:29 UTC 2014
Modified Files:
src/tools/gcc: Makefile
Log Message:
or1k does not support --with-float
To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/tools/gcc/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tools/gcc/Makefile
diff -u src/tools/gcc/Makefile:1.70 src/tools/gcc/Makefile:1.71
--- src/tools/gcc/Makefile:1.70 Sat Jun 14 20:49:37 2014
+++ src/tools/gcc/Makefile Wed Sep 3 19:25:29 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.70 2014/06/14 20:49:37 mrg Exp $
+# $NetBSD: Makefile,v 1.71 2014/09/03 19:25:29 matt Exp $
.include <bsd.own.mk>
@@ -27,7 +27,8 @@ MULTILIB_ARGS= --enable-multilib
MULTILIB_ARGS= --disable-multilib
.endif
-.if ${MKSOFTFLOAT} != "no" && ${MACHINE_CPU} != "m68k"
+.if ${MKSOFTFLOAT} != "no" && ${MACHINE_CPU} != "m68k" \
+ && ${MACHINE_CPU} != "or1k"
SOFTFLOAT_ARGS= -with-float=soft
.endif