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

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