https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78478
--- Comment #18 from Joel Sherrill <joel at gcc dot gnu.org> --- (In reply to Uroš Bizjak from comment #17) > (In reply to Joel Sherrill from comment #16) > > Thanks for all the feedback. With this patch, it now builds. Is the style of > > change to configure.host OK? > > +#ifdef _SOFT_FLOAT > +#include "fpu-generic.h" > + This seems like a good solution but the build can't find fpu-generic.h In file included from ../../../../gcc/libgfortran/runtime/fpu.c:29:0: ./fpu-target.h:27:25: fatal error: fpu-generic.h: No such file or directory #include "fpu-generic.h" I changed that line to #ifdef _SOFT_FLOAT #include "config/fpu-generic.h" and it built. Is that OK?