Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Sep 2014 18:11:36 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271179 - head/lib/libc/arm
Message-ID:  <201409051811.s85IBaoc050765@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Fri Sep  5 18:11:36 2014
New Revision: 271179
URL: http://svnweb.freebsd.org/changeset/base/271179

Log:
  Add the fp{get,set}{mask,round} functions to the public symbols in the map.
  These are only exported for armv6hf as the soft-float ABIs have these in
  the softfloat Symbol.map file.

Added:
  head/lib/libc/arm/Symbol_vfp.map   (contents, props changed)
Modified:
  head/lib/libc/arm/Makefile.inc

Modified: head/lib/libc/arm/Makefile.inc
==============================================================================
--- head/lib/libc/arm/Makefile.inc	Fri Sep  5 18:07:15 2014	(r271178)
+++ head/lib/libc/arm/Makefile.inc	Fri Sep  5 18:11:36 2014	(r271179)
@@ -16,3 +16,7 @@ SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol_oabi
 .include "${LIBC_SRCTOP}/arm/aeabi/Makefile.inc"
 .endif
 
+.if ${MACHINE_ARCH} == "armv6hf"
+SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol_vfp.map
+.endif
+

Added: head/lib/libc/arm/Symbol_vfp.map
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lib/libc/arm/Symbol_vfp.map	Fri Sep  5 18:11:36 2014	(r271179)
@@ -0,0 +1,10 @@
+/*
+ * $FreeBSD$
+ */
+
+FBSD_1.0 {
+	fpgetmask;
+	fpgetround;
+	fpsetmask;
+	fpsetround;
+};



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409051811.s85IBaoc050765>