22684017 GCC 5.3 fixincludes patch should leave sys/feature_tests.h alone
authorNorm Jacobs <Norm.Jacobs@Oracle.COM>
Mon, 08 Feb 2016 10:16:46 -0800
changeset 5419 0a6df3707968
parent 5418 708cabdc9a39
child 5420 baf1a4b7e960
22684017 GCC 5.3 fixincludes patch should leave sys/feature_tests.h alone
components/gcc53/Makefile
components/gcc53/developer-gcc-gcc-common-53.p5m
components/gcc53/patches/006-fixincludes.patch
--- a/components/gcc53/Makefile	Thu Feb 04 13:27:58 2016 -0800
+++ b/components/gcc53/Makefile	Mon Feb 08 10:16:46 2016 -0800
@@ -45,9 +45,6 @@
 # The GNU compiler wants the GNU utilities.
 PATH=/usr/gnu/bin:/usr/bin:/usr/perl5/bin
 
-# since we are patching inclhack.def, we want to regenerate fixincl.x
-COMPONENT_PREP_ACTION = (cd $(@D)/fixincludes ; ./genfixes)
-
 PARCH =         $(MACH64:amd64=x86_64-pc)
 GNU_ARCH =      $(PARCH:sparc=sparcv9-sun)-solaris$(SOLARIS_VERSION)
 
--- a/components/gcc53/developer-gcc-gcc-common-53.p5m	Thu Feb 04 13:27:58 2016 -0800
+++ b/components/gcc53/developer-gcc-gcc-common-53.p5m	Mon Feb 08 10:16:46 2016 -0800
@@ -114,7 +114,6 @@
     variant.arch=i386
 file path=$(GCC_BASEDIR)/lib/gcc/$(GNU_ARCH)/$(COMPONENT_VERSION)/gmon.o
 file path=$(GCC_BASEDIR)/lib/gcc/$(GNU_ARCH)/$(COMPONENT_VERSION)/include-fixed/limits.h
-file path=$(GCC_BASEDIR)/lib/gcc/$(GNU_ARCH)/$(COMPONENT_VERSION)/include-fixed/sys/feature_tests.h
 file path=$(GCC_BASEDIR)/lib/gcc/$(GNU_ARCH)/$(COMPONENT_VERSION)/include-fixed/syslimits.h
 file \
     path=$(GCC_BASEDIR)/lib/gcc/$(GNU_ARCH)/$(COMPONENT_VERSION)/include/adxintrin.h \
--- a/components/gcc53/patches/006-fixincludes.patch	Thu Feb 04 13:27:58 2016 -0800
+++ b/components/gcc53/patches/006-fixincludes.patch	Mon Feb 08 10:16:46 2016 -0800
@@ -1,16 +1,10 @@
 #
 # We have made several changes to headers in Solaris 11/12 so that we no
-# longer need to "fix" them.  These changes limit what we keep.
-#
-# GCC now defines __STDC_VERSION__ by default, which doesn't appear to have
-# been contemplated in sys/feature_tests.h.  We need to carefully evaluate
-# changes to the Solaris system headers:
+# longer need to "fix" them.  This patch limits what we fix and keep.
 #
-#     22602861 header assumptions may need a revisit.
-#
-# For now we want to compensate when __GNUC__ >= 5
-#
-# This is not ready for upstream.
+# We will want to spend time going through inclhack.def to make sure that
+# it only targets those things that we want "fixed" in S12 and later before
+# we submit anything upstream.
 #
 --- gcc-5.3.0.orig/fixincludes/fixinc.in	Sun Oct 28 14:42:48 2012
 +++ gcc-5.3.0/fixincludes/fixinc.in	Fri Jan 22 23:13:39 2016
@@ -18,9 +12,9 @@
  # DOS/Windows filesystems.
  find . -name '[Dd][Oo][Nn][Ee]' -exec rm -f '{}' ';'
  
-+# We only want limits.h, syslimits.h, and sys/feature_tests.h fixed on Solaris
++# We only want limits.h and syslimits.h fixed on Solaris
 +for file in `find . -type f | \
-+             egrep -v './(limits.h|syslimits.h|sys/feature_tests.h)'` ; do
++             egrep -v './(limits.h|syslimits.h)'` ; do
 +  echo Removing $file
 +  rm -f $file
 +done
@@ -28,25 +22,3 @@
  if test $VERBOSE -gt 1
  then echo 'Cleaning up unneeded directories:' ; fi
  cd $LIB
---- gcc-5.3.0/fixincludes/inclhack.def.orig	Fri Aug 14 04:34:26 2015
-+++ gcc-5.3.0/fixincludes/inclhack.def	Wed Jan 20 23:29:04 2016
-@@ -3352,6 +3352,19 @@
- };
- 
- /*
-+ *  Solaris 12 <sys/feature_tests.h> tests.
-+ */
-+fix = {
-+    hackname  = solaris_12_invalid;
-+    mach      = "*-*-solaris2*";
-+    files     = sys/feature_tests.h;
-+    select    = "#if.*_STDC_C99.*__XOPEN_OR_POSIX.*_XPG6.*";
-+    c_fix     = format;
-+    c_fix_arg = "%0 && \\\n\t(__GNUC__ - 0 < 5)";
-+    test_text = "#define __GNUC__ 5";
-+};
-+
-+/*
-  * Solaris 10+ complex.h defines _Complex_I and _Imaginary_I in terms of
-  * themselves, which are Sun Studio compiler intrinsics.  Remove _Imaginary_I
-  * and imaginary definitions which are not supported by GCC.