http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59335
Bug ID: 59335 Summary: Plugin doesn't build on trunk Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: plugins Assignee: unassigned at gcc dot gnu.org Reporter: joey.ye at arm dot com trunk 205454 breaks plugin on x86_64 and arm. When gcc is built and installed, using it to build any plugin with g++ -fPIC -g -O2 -shared -I `g++ -print-file-name=plugin`/include will result as: install/lib/gcc/x86_64-unknown-linux-gnu/4.9.0/plugin/include/config/i386/i386-opts.h:37:24: fatal error: stringop.def: No such file or directory #include "stringop.def" install/lib/gcc/arm-none-eabi/4.9.0/plugin/include/builtins.def:881:29: fatal error: chkp-builtins.def: No such file or directory It looks that some header files needed for plugins are not installed correctly. Plugins in testsuite pass as they use headers from GCC source tree.