Blame SOURCES/gcc12-hack.patch

5fc0b3
--- libada/Makefile.in.jj	2019-01-09 13:01:18.015608205 +0100
5fc0b3
+++ libada/Makefile.in	2019-01-11 18:16:23.441726931 +0100
5fc0b3
@@ -71,18 +71,40 @@ version := $(shell @get_gcc_base_ver@ $(
5fc0b3
 libsubdir := $(libdir)/gcc/$(target_noncanonical)/$(version)$(MULTISUBDIR)
5fc0b3
 ADA_RTS_DIR=$(GCC_DIR)/ada/rts$(subst /,_,$(MULTISUBDIR))
5fc0b3
 
5fc0b3
+DEFAULTMULTIFLAGS :=
5fc0b3
+ifeq ($(MULTISUBDIR),)
5fc0b3
+targ:=$(subst -, ,$(target))
5fc0b3
+arch:=$(word 1,$(targ))
5fc0b3
+ifeq ($(words $(targ)),2)
5fc0b3
+osys:=$(word 2,$(targ))
5fc0b3
+else
5fc0b3
+osys:=$(word 3,$(targ))
5fc0b3
+endif
5fc0b3
+ifeq ($(strip $(filter-out i%86 x86_64 powerpc% ppc% s390% sparc% linux%, $(arch) $(osys))),)
5fc0b3
+ifeq ($(shell $(CC) $(CFLAGS) -print-multi-os-directory),../lib64)
5fc0b3
+DEFAULTMULTIFLAGS := -m64
5fc0b3
+else
5fc0b3
+ifeq ($(strip $(filter-out s390%, $(arch))),)
5fc0b3
+DEFAULTMULTIFLAGS := -m31
5fc0b3
+else
5fc0b3
+DEFAULTMULTIFLAGS := -m32
5fc0b3
+endif
5fc0b3
+endif
5fc0b3
+endif
5fc0b3
+endif
5fc0b3
+
5fc0b3
 # exeext should not be used because it's the *host* exeext.  We're building
5fc0b3
 # a *target* library, aren't we?!?  Likewise for CC.  Still, provide bogus
5fc0b3
 # definitions just in case something slips through the safety net provided
5fc0b3
 # by recursive make invocations in gcc/ada/Makefile.in
5fc0b3
 LIBADA_FLAGS_TO_PASS = \
5fc0b3
         "MAKEOVERRIDES=" \
5fc0b3
-        "LDFLAGS=$(LDFLAGS)" \
5fc0b3
+        "LDFLAGS=$(LDFLAGS) $(DEFAULTMULTIFLAGS)" \
5fc0b3
         "LN_S=$(LN_S)" \
5fc0b3
         "SHELL=$(SHELL)" \
5fc0b3
-        "GNATLIBFLAGS=$(GNATLIBFLAGS) $(MULTIFLAGS)" \
5fc0b3
-        "GNATLIBCFLAGS=$(GNATLIBCFLAGS) $(MULTIFLAGS)" \
5fc0b3
-        "GNATLIBCFLAGS_FOR_C=$(GNATLIBCFLAGS_FOR_C) $(MULTIFLAGS)" \
5fc0b3
+        "GNATLIBFLAGS=$(GNATLIBFLAGS) $(MULTIFLAGS) $(DEFAULTMULTIFLAGS)" \
5fc0b3
+        "GNATLIBCFLAGS=$(GNATLIBCFLAGS) $(MULTIFLAGS) $(DEFAULTMULTIFLAGS)" \
5fc0b3
+        "GNATLIBCFLAGS_FOR_C=$(GNATLIBCFLAGS_FOR_C) $(MULTIFLAGS) $(DEFAULTMULTIFLAGS)" \
5fc0b3
         "PICFLAG_FOR_TARGET=$(PICFLAG)" \
5fc0b3
         "THREAD_KIND=$(THREAD_KIND)" \
5fc0b3
         "TRACE=$(TRACE)" \
5fc0b3
@@ -93,7 +115,7 @@ LIBADA_FLAGS_TO_PASS = \
5fc0b3
         "exeext=.exeext.should.not.be.used " \
5fc0b3
 	'CC=the.host.compiler.should.not.be.needed' \
5fc0b3
 	"GCC_FOR_TARGET=$(CC)" \
5fc0b3
-        "CFLAGS=$(CFLAGS)"
5fc0b3
+        "CFLAGS=$(CFLAGS) $(DEFAULTMULTIFLAGS)"
5fc0b3
 
5fc0b3
 .PHONY: libada gnatlib gnatlib-shared gnatlib-sjlj gnatlib-zcx osconstool
5fc0b3
 
5fc0b3
--- config-ml.in.jj	2019-01-09 12:50:16.646501448 +0100
5fc0b3
+++ config-ml.in	2019-01-11 18:16:23.442726914 +0100
5fc0b3
@@ -511,6 +511,8 @@ multi-do:
5fc0b3
 				ADAFLAGS="$(ADAFLAGS) $${flags}" \
5fc0b3
 				prefix="$(prefix)" \
5fc0b3
 				exec_prefix="$(exec_prefix)" \
5fc0b3
+				mandir="$(mandir)" \
5fc0b3
+				infodir="$(infodir)" \
5fc0b3
 				GOCFLAGS="$(GOCFLAGS) $${flags}" \
5fc0b3
 				GDCFLAGS="$(GDCFLAGS) $${flags}" \
5fc0b3
 				CXXFLAGS="$(CXXFLAGS) $${flags}" \
5fc0b3
--- libcpp/macro.cc.jj	2019-01-09 13:01:21.420552123 +0100
5fc0b3
+++ libcpp/macro.cc	2019-01-11 18:18:17.736876285 +0100
5fc0b3
@@ -3256,8 +3256,6 @@ static cpp_macro *
5fc0b3
 create_iso_definition (cpp_reader *pfile)
5fc0b3
 {
5fc0b3
   bool following_paste_op = false;
5fc0b3
-  const char *paste_op_error_msg =
5fc0b3
-    N_("'##' cannot appear at either end of a macro expansion");
5fc0b3
   unsigned int num_extra_tokens = 0;
5fc0b3
   unsigned nparms = 0;
5fc0b3
   cpp_hashnode **params = NULL;
5fc0b3
@@ -3382,7 +3380,9 @@ create_iso_definition (cpp_reader *pfile
5fc0b3
 	     function-like macros, but not at the end.  */
5fc0b3
 	  if (following_paste_op)
5fc0b3
 	    {
5fc0b3
-	      cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
5fc0b3
+	      cpp_error (pfile, CPP_DL_ERROR,
5fc0b3
+			 "'##' cannot appear at either end of a macro "
5fc0b3
+			 "expansion");
5fc0b3
 	      goto out;
5fc0b3
 	    }
5fc0b3
 	  if (!vaopt_tracker.completed ())
5fc0b3
@@ -3397,7 +3397,9 @@ create_iso_definition (cpp_reader *pfile
5fc0b3
 	     function-like macros, but not at the beginning.  */
5fc0b3
 	  if (macro->count == 1)
5fc0b3
 	    {
5fc0b3
-	      cpp_error (pfile, CPP_DL_ERROR, paste_op_error_msg);
5fc0b3
+	      cpp_error (pfile, CPP_DL_ERROR,
5fc0b3
+			 "'##' cannot appear at either end of a macro "
5fc0b3
+			 "expansion");
5fc0b3
 	      goto out;
5fc0b3
 	    }
5fc0b3
 
5fc0b3
--- libcpp/expr.cc.jj	2019-01-09 13:01:22.415535734 +0100
5fc0b3
+++ libcpp/expr.cc	2019-01-11 18:16:23.444726882 +0100
5fc0b3
@@ -803,16 +803,17 @@ cpp_classify_number (cpp_reader *pfile,
5fc0b3
       if ((result & CPP_N_WIDTH) == CPP_N_LARGE
5fc0b3
 	  && CPP_OPTION (pfile, cpp_warn_long_long))
5fc0b3
         {
5fc0b3
-          const char *message = CPP_OPTION (pfile, cplusplus) 
5fc0b3
-				? N_("use of C++11 long long integer constant")
5fc0b3
-		                : N_("use of C99 long long integer constant");
5fc0b3
-
5fc0b3
 	  if (CPP_OPTION (pfile, c99))
5fc0b3
             cpp_warning_with_line (pfile, CPP_W_LONG_LONG, virtual_location,
5fc0b3
-				   0, message);
5fc0b3
+				   0, CPP_OPTION (pfile, cplusplus)
5fc0b3
+				      ? N_("use of C++11 long long integer constant")
5fc0b3
+				      : N_("use of C99 long long integer constant"));
5fc0b3
           else
5fc0b3
             cpp_pedwarning_with_line (pfile, CPP_W_LONG_LONG,
5fc0b3
-				      virtual_location, 0, message);
5fc0b3
+				      virtual_location, 0,
5fc0b3
+				      CPP_OPTION (pfile, cplusplus)
5fc0b3
+				      ? N_("use of C++11 long long integer constant")
5fc0b3
+				      : N_("use of C99 long long integer constant"));
5fc0b3
         }
5fc0b3
 
5fc0b3
       if ((result & CPP_N_SIZE_T) == CPP_N_SIZE_T