This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Problem subdir configures get run again after toolchain builtif make repeated.
Ok, I see it. It's another "real file depends on phony target" case.
We have essentially this:
$(module)/multilib.out : maybe-all-gcc
$(CC_FOR_TARGET) --print-multilibs > $(module)/multilib
We should probably depend on the actual compiler driver, or have some
move-if-changed master copy of multilib.out and have the others depend
on that instead. Comments?