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.25-626-gfa56268


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  fa562680ced07441f3edaf986f35d12516d8b081 (commit)
      from  614d15f9324a871cc742a8952a3117c57831a3c5 (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=fa562680ced07441f3edaf986f35d12516d8b081

commit fa562680ced07441f3edaf986f35d12516d8b081
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Jun 28 19:42:14 2017 +0000

    Fix gen-tgmath-tests.py output for GCC 7 <float.h>.
    
    	* math/gen-tgmath-tests.py (Tests.__init__): Define
    	__STDC_WANT_IEC_60559_TYPES_EXT__ at start of generated file.

diff --git a/ChangeLog b/ChangeLog
index 8334e48..5679470 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-06-28  Joseph Myers  <joseph@codesourcery.com>
 
+	* math/gen-tgmath-tests.py (Tests.__init__): Define
+	__STDC_WANT_IEC_60559_TYPES_EXT__ at start of generated file.
+
 	* math/tgmath.h: Include <bits/libc-header-start.h> and
 	<bits/floatn.h>.
 	(__TGMATH_F128): New macro.
diff --git a/math/gen-tgmath-tests.py b/math/gen-tgmath-tests.py
index 04492cd..0c548ef 100755
--- a/math/gen-tgmath-tests.py
+++ b/math/gen-tgmath-tests.py
@@ -293,7 +293,8 @@ class Tests(object):
 
     def __init__(self):
         """Initialize a Tests object."""
-        self.header_list = ['#include <float.h>\n'
+        self.header_list = ['#define __STDC_WANT_IEC_60559_TYPES_EXT__\n'
+                            '#include <float.h>\n'
                             '#include <stdbool.h>\n'
                             '#include <stdint.h>\n'
                             '#include <stdio.h>\n'

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

Summary of changes:
 ChangeLog                |    3 +++
 math/gen-tgmath-tests.py |    3 ++-
 2 files changed, 5 insertions(+), 1 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]