On Mon, 29 May 2023, Jan-Benedict Glaw wrote: > > Can you elaborate how you build GCC? > > My host compileris Debian's "gcc-snapshot", by now some two months > old. (As Eric wrote, it's probably just too old.) That compiler is > given for CC/CXX. The new build is just (as I wrote in the initial > mail) the configure/make call. So I'll just wait for the next drop for > Debian's "gcc-snapshot" package. I see that there are already a good > number of additional commits on the package source, I guess a new > package version is imminent.
Alternatively you can just bootstrap GCC under test natively first and then use the newly-built compiler for all the cross builds you want to verify. As you need to do it only once per iteration the extra time spent on the native build shouldn't be a big fraction of the duration of the whole iteration. A drawback is if this native bootstrap fails for any reason, it will make the whole run invalid, i.e. none of the cross targets will be verified. Maciej