https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116730
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2024-09-16 Ever confirmed|0 |1 Status|UNCONFIRMED |WAITING --- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> --- >../../configure --prefix=/opt/gcc/14.2.0 --enable-lto This is an interesting configure line. Can you expand on which directory you are configuring from and how you get the source? I am suspect you are building in an directory which is not supported on how to do the build. That is doing: mkdir objdir cd objdir ../configure is supported BUT doing: mkdir objdir mkdir objdir/14.2 cd objdir/14.2 ../../configure is not supported. Note doing: mkdir objdir mkdir objdir/14.2 cd objdir/14.2 `pwd`/../../configure is supported because configure is given a full path.