This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26.9000-818-g9d4b011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9d4b01173c5f605d7edb26d3210d04efaa1bb032 (commit)
      from  7911dd47da73026acc930564c10a1ceeb68d8583 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9d4b01173c5f605d7edb26d3210d04efaa1bb032

commit 9d4b01173c5f605d7edb26d3210d04efaa1bb032
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Nov 24 18:38:45 2017 +0000

    Move wcstof128 symbol versions to wcsmbs/Versions.
    
    This patch moves wcstof128 and wcstof128_l Versions file entries from
    stdlib/Versions to wcsmbs/Versions, which is a more appropriate place
    for them.
    
    Tested for x86_64, and with build-many-glibcs.py that installed
    stripped shared libraries are unchanged by the patch.
    
    	* stdlib/Versions (libc): Move entries for wcstof128 and
    	wcstof128_l to ....
    	* wcsmbs/Versions (libc): ... here.
    	Include <float128-abi.h>.

diff --git a/ChangeLog b/ChangeLog
index 9acf3ae..f788721 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-11-24  Joseph Myers  <joseph@codesourcery.com>
+
+	* stdlib/Versions (libc): Move entries for wcstof128 and
+	wcstof128_l to ....
+	* wcsmbs/Versions (libc): ... here.
+	Include <float128-abi.h>.
+
 2017-11-24  Florian Weimer  <fweimer@redhat.com>
 
 	* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
diff --git a/stdlib/Versions b/stdlib/Versions
index 9d96de5..bf2172f 100644
--- a/stdlib/Versions
+++ b/stdlib/Versions
@@ -127,8 +127,6 @@ libc {
     strfromf128;
     strtof128;
     strtof128_l;
-    wcstof128;
-    wcstof128_l;
   }
 %endif
   GLIBC_PRIVATE {
diff --git a/wcsmbs/Versions b/wcsmbs/Versions
index b8f7bd7..df6e7cd 100644
--- a/wcsmbs/Versions
+++ b/wcsmbs/Versions
@@ -1,3 +1,4 @@
+%include <float128-abi.h>
 libc {
   GLIBC_2.0 {
     # functions used in inline functions or macros
@@ -34,4 +35,10 @@ libc {
   GLIBC_2.16 {
     c16rtomb; c32rtomb; mbrtoc16; mbrtoc32;
   }
+%ifdef FLOAT128_VERSION
+  FLOAT128_VERSION {
+    wcstof128;
+    wcstof128_l;
+  }
+%endif
 }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |    7 +++++++
 stdlib/Versions |    2 --
 wcsmbs/Versions |    7 +++++++
 3 files changed, 14 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]