On Wed, 19 Jul 2023 at 10:29, Budi via Gcc-help <gcc-help@xxxxxxxxxxx> wrote: > > Has anyone experienced Gcc build by Intel Haswell or AMD bulldozer level of cpu > > with > > configure --disable-host-shared --disable-host-pie --disable-shared > --with-arch=bdver1 --enable-languages=ada,c,c++,lto,m2 > > How long will it take roughly ? > (it's been more than hour still not done) Are you using more than one make job, with the -j option? If not, it will take several hours. You could interrupt it (Ctrl-C) and start again with 'make -j8' (or higher). > > can one pull request to add information of progress percentage feature ? No, probably not. There are too many recursive sub-makes and how many files need to be built varies too much. Any kind of progress indicator would be completely inaccurate. And GNU Make doesn't provide a way to do that anyway.