http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55243
--- Comment #26 from Eric Botcazou <ebotcazou at gcc dot gnu.org> 2012-12-14 18:32:02 UTC --- > Notice $(srcdir)/gcc/ada/gcc-interface/Makefile.in reads: > > # target overrides > ifneq ($(tmake_file),) > include $(tmake_file) > endif > > # host overrides > ifneq ($(xmake_file),) > include $(xmake_file) > endif > > There are other backends like x86 and mips that use STAMP in their t-snip, so > I wonder how you can conclude that ada does not include code that might > require STAMP? I didn't say that though, rather that we don't need STAMP for the gnattools. Of course we need it for the Ada compiler proper, like the other compilers. > Here is a patch that bypasses the need of STAMP in t-avr. Rolf can test it. > > > PR55243 > * config/avr/t-avr: Don't automatically rebuild > $(srcdir)/config/avr/t-multilib > $(srcdir)/config/avr/avr-tables.opt > $(srcdir)/doc/avr-mmcu.texi > (avr-mcus): New phony target to build them on request. > (s-avr-mlib, s-avr-mmcu-texi): Remove. > * avr/avr-mcus.def: Adjust comments. Nice, thanks.