Blame SOURCES/0008-testsuite-build-plugins-with-std-c-11.patch

759f0e
From 16694079a3f415f5e5683b0afe6978810ac259b1 Mon Sep 17 00:00:00 2001
759f0e
From: David Malcolm <dmalcolm@redhat.com>
759f0e
Date: Tue, 31 Aug 2021 17:01:05 -0400
759f0e
Subject: [PATCH 08/17] testsuite: build plugins with -std=c++11
759f0e
759f0e
Various testsuite plugins fail when built within DTS with e.g.:
759f0e
  cc1: error: cannot load plugin ./diagnostic_plugin_test_paths.so: /builddir/build/BUILD/gcc-11.1.1-20210623/obj-x86_64-redhat-linux/x86_64-redhat-linux/libstdc++-v3/src/.libs/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by ./diagnostic_plugin_test_paths.so)
759f0e
759f0e
These turn out to C++14's sized deletion
759f0e
(see https://en.cppreference.com/w/cpp/memory/new/operator_delete):
759f0e
759f0e
   14: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF _ZdlPvm@CXXABI_1.3.9 (4)
759f0e
   48: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF _ZdlPvm@CXXABI_1.3.9
759f0e
   14: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF operator delete(void*, unsigned long)@CXXABI_1.3.9 (4)
759f0e
   48: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF operator delete(void*, unsigned long)@CXXABI_1.3.9
759f0e
759f0e
Looks like plugin.exp is building the test plugins against the
759f0e
freshly-built libstdc++, and then trying to dynamically load them
759f0e
against the system libstdc++.
759f0e
759f0e
This patch forces the use of -std=c++11 when building these test plugins,
759f0e
to sidestep the problem.
759f0e
---
759f0e
 gcc/testsuite/lib/plugin-support.exp | 2 +-
759f0e
 1 file changed, 1 insertion(+), 1 deletion(-)
759f0e
759f0e
diff --git a/gcc/testsuite/lib/plugin-support.exp b/gcc/testsuite/lib/plugin-support.exp
759f0e
index 6d651901e..9943dbb37 100644
759f0e
--- a/gcc/testsuite/lib/plugin-support.exp
759f0e
+++ b/gcc/testsuite/lib/plugin-support.exp
759f0e
@@ -103,7 +103,7 @@ proc plugin-test-execute { plugin_src plugin_tests } {
759f0e
 	}
759f0e
 	set optstr [concat $optstr "-DIN_GCC -fPIC -shared -fno-rtti -undefined dynamic_lookup"]
759f0e
     } else {
759f0e
-	set plug_cflags $PLUGINCFLAGS 
759f0e
+	set plug_cflags "$PLUGINCFLAGS -std=c++11"
759f0e
 	set optstr "$includes $extra_flags -DIN_GCC -fPIC -shared -fno-rtti"
759f0e
     }
759f0e
 
759f0e
-- 
759f0e
2.31.1
759f0e