On Fri, Feb 04, 2022 at 02:25:17PM +0100, Richard Biener via Gcc-patches wrote: > > Besides, have you actually run a regtest with that option? I'm asking > > because even on Ubuntu 20.04 fixincludes drops in it's own <limits.h>. > > You need to check that dropping that is actually safe. > > limits.h and syslimits.h are the only include-fixed we "ship" in our > packages. Not sure if they are really required though.
We don't ship any include-fixed headers in Fedora/RHEL. If there is an important need for fixing, it should be in Linux distributions fixed by actually fixing the headers in their corresponding packages, making modified copies of headers at gcc build time and overriding through that headers from other packages that can change doesn't really work properly when those headers ever change. I know we could install the fixincludes tool and trigger running it whenever any of such headers change in other packages, but that is very expensive for very little gain. On other targets I understand fixincludes is much more important. Jakub