Hi! Pretty much all plugins fail to compile against installed plugin headers on i?86, because stringop.def isn't installed.
This patch should fix that, ok if testing succeeds? 2014-03-05 Jakub Jelinek <ja...@redhat.com> * config/i386/t-i386 (OPTIONS_H_EXTRA): Add stringop.def. --- gcc/config/i386/t-i386.jj 2014-01-03 11:41:06.000000000 +0100 +++ gcc/config/i386/t-i386 2014-03-05 09:40:22.433466727 +0100 @@ -16,11 +16,12 @@ # along with GCC; see the file COPYING3. If not see # <http://www.gnu.org/licenses/>. +OPTIONS_H_EXTRA += $(srcdir)/config/i386/stringop.def + i386-c.o: $(srcdir)/config/i386/i386-c.c i386-builtin-types.inc $(COMPILE) $< $(POSTCOMPILE) - i386-builtin-types.inc: s-i386-bt ; @true s-i386-bt: $(srcdir)/config/i386/i386-builtin-types.awk \ $(srcdir)/config/i386/i386-builtin-types.def Jakub