On Tue, Jun 18, 2019 at 06:40:15PM +0200, Thomas Schwinge wrote: > I normally don't pay too much attention to how GCC builds proceed, but > here, I was waiting for it to complete... ;-) > > Doing a native bootstrap build on x86_64-pc-linux-gnu, with > '--enable-checking=yes,extra,df,fold,rtl' (is that excessive, maybe?), I
With fold checking you can expect anything, that is really very expensive, not something you should use on a day by day basis. df checking is also expensive, but not that much. I personally build just with yes,rtl,extra checking normally, and use fold checking once a year or so. Jakub