This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Irix6 bootstrap failure, intl dir depends on insn-codes.h now


On Nov 24, 2000, Joern Rennecke <amylaar@redhat.com> wrote:

> Well, since the Makefile in the intl directory doesn't have access to
> the rules in the gcc toplevel Makefile, the latter has to make sure that
> all of its rules that are necessary have been applied before calling the
> sub-make.
> Indeed, here's another point where recursive make is harmful - instead of
> having individual targets depend on a dependency, a whole group has to depend
> on it.

You can always add a separate dependency for selected targets.  In
fact, you should do it, so that only intl.all depends on $(CONFIG_H).

Just add another line:

intl.all: $(CONFIG_H)

Consider this change pre-approved, as long as you post it to
gcc-patches.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]