https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119217
--- Comment #26 from Robert Dubner <rdubner at gcc dot gnu.org> --- *Thank* you. Those hints led to a successful compilation. This doesn't work: ../configure CONFIG_SHELL=/bin/bash --enable-languages=c,c++ --disable-multilib --disable-bootstrap So, I cribbed some of the information from doing a "gcc -v" and copying some of the "configured with" information. This does work: ../configure CONFIG_SHELL=/bin/bash --prefix=/usr/gcc/14 --enable-languages=ada,c,c++ --enable-shared --enable-initfini-array --disable-rpath --with-system-zlib --with-build-config=no --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/usr/gnu/bin/as --disable-bootstrap x86_64-pc-solaris2.11 Doing a "make -sj10" takes twenty-three minutes, so figuring out what's important and what isn't by trial and error would take a little while. However, I am not going to bother. The next step will be --enable-languages=c,c++,cobol, and I'll see what happens. Thank you so much!