From patchwork Thu Nov 29 17:48:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Filter out -fsanitize=address from PLUGINCFLAGS Date: Thu, 29 Nov 2012 07:48:51 -0000 From: "H.J. Lu" X-Patchwork-Id: 202799 Message-Id: <20121129174851.GC31369@intel.com> To: gcc-patches@gcc.gnu.org Hi, All plugin tests failed when GCC is configured with --with-build-config=bootstrap-asan, since linker can't find libasan at link-time. -fsanitize=address isn't needed to test plugin support. This patch filters out -fsanitize=address from PLUGINCFLAGS. OK to install? Thanks. H.J. --- gcc/Makefile.in | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 2012-11-22 H.J. Lu PR testsuite/55440 * Makefile.in (PLUGINCFLAGS): Filter out -fsanitize=address. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c7b8648..78a6007 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -329,7 +329,8 @@ enable_lto = @enable_lto@ # Compiler and flags needed for plugin support PLUGINCC = @CXX@ -PLUGINCFLAGS = @CXXFLAGS@ +# Filter out -fsanitize=address +PLUGINCFLAGS = $(filter-out -fsanitize=address,@CXXFLAGS@) # Libs and linker options needed for plugin support PLUGINLIBS = @pluginlibs@