From owner-svn-src-projects@FreeBSD.ORG Mon Oct 28 22:13:51 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3F818661; Mon, 28 Oct 2013 22:13:51 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D19B237A; Mon, 28 Oct 2013 22:13:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9SMDpEC060768; Mon, 28 Oct 2013 22:13:51 GMT (envelope-from andrew@svn.freebsd.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9SMDpA3060767; Mon, 28 Oct 2013 22:13:51 GMT (envelope-from andrew@svn.freebsd.org) Message-Id: <201310282213.r9SMDpA3060767@svn.freebsd.org> From: Andrew Turner Date: Mon, 28 Oct 2013 22:13:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r257283 - projects/arm_eabi_vfp/lib/libc/arm/aeabi X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 22:13:51 -0000 Author: andrew Date: Mon Oct 28 22:13:50 2013 New Revision: 257283 URL: http://svnweb.freebsd.org/changeset/base/257283 Log: Only build the VFP versions of the float helper functions on architectures where we support VFP. Modified: projects/arm_eabi_vfp/lib/libc/arm/aeabi/Makefile.inc Modified: projects/arm_eabi_vfp/lib/libc/arm/aeabi/Makefile.inc ============================================================================== --- projects/arm_eabi_vfp/lib/libc/arm/aeabi/Makefile.inc Mon Oct 28 21:41:44 2013 (r257282) +++ projects/arm_eabi_vfp/lib/libc/arm/aeabi/Makefile.inc Mon Oct 28 22:13:50 2013 (r257283) @@ -3,13 +3,15 @@ .PATH: ${.CURDIR}/arm/aeabi SRCS+= aeabi_atexit.c \ - aeabi_unwind_cpp.c \ - aeabi_vfp_double.S \ - aeabi_vfp_float.S + aeabi_unwind_cpp.c .if ${MACHINE_ARCH} != "armv6hf" SRCS+= aeabi_double.c \ aeabi_float.c .endif +.if ${MACHINE_ARCH:Marmv6*} +SRCS+= aeabi_vfp_double.S \ + aeabi_vfp_float.S +.endif # Add the aeabi_mem* functions. While they live in compiler-rt they call into # libc. This causes issues when other parts of libc call these functions.