On Thu, Jun 20, 2013 at 6:25 PM, Mike Stump <mikest...@comcast.net> wrote: > A make clean followed by a make in the libgcc directory results in: > > ../../../../gcc/libgcc/config/i386/cpuinfo.c:23:25: fatal error: > auto-target.h: No such file or directory > #include "auto-target.h" > > Oh, the the old days, we'd just add a dependancy… If someone knows where to > add just the right one… I ask, because there doesn't seem to be a single .h > dependency anywhere…
auto-target.h is created by the configure script. It's a bug that it is removed by "make clean". It should only be removed by "make distclean". Ian