Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib Restrict libc_vfp to NetBSD/arm. It doesn't make sense f...
details: https://anonhg.NetBSD.org/src/rev/cb28c82b2253
branches: trunk
changeset: 810786:cb28c82b2253
user: joerg <joerg%NetBSD.org@localhost>
date: Tue Sep 22 13:26:14 2015 +0000
description:
Restrict libc_vfp to NetBSD/arm. It doesn't make sense for aarch64.
diffstat:
lib/Makefile | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (19 lines):
diff -r 3ca67fbc15b5 -r cb28c82b2253 lib/Makefile
--- a/lib/Makefile Tue Sep 22 08:29:30 2015 +0000
+++ b/lib/Makefile Tue Sep 22 13:26:14 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.227 2015/09/17 02:00:33 christos Exp $
+# $NetBSD: Makefile,v 1.228 2015/09/22 13:26:14 joerg Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@@ -35,7 +35,8 @@
.if (${MACHINE_CPU} == "arm" || ${MACHINE_CPU} == "aarch64")
LIBC_MACHINE_ARCH?=${MACHINE_ARCH}
-.if empty(LIBC_MACHINE_ARCH:M*hf*)
+LIBC_MACHINE_CPU?=${MACHINE_CPU}
+.if ${LIBC_MACHINE_CPU} == "arm" && empty(LIBC_MACHINE_ARCH:M*hf*)
SUBDIR+= libc_vfp
.endif
.endif
Home |
Main Index |
Thread Index |
Old Index