This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: patch/proposal: obsolete configurations in 3.1
On Mon, Apr 15, 2002 at 10:10:07PM -0400, Phil Edwards wrote:
>
> The cleanup of config/* seems to be proceeding well. If the bits become
> unentangled enough, it would be nice to consider separating tarballs along
> platform lines instead of / in addition to language lines.
To facilitate this we would need to fracture config.gcc into many
pieces, one per config subdirectory. There is no technical difficulty
with doing that - we'd just replace the big case statement with
for arch in $srcdir/config/*/*.cf
do
. $arch
if [ x"$something_or_other" != x ]; then
break
fi
done
It's not clear what $something_or_other would be. We might have to
get rid of the default stuff.
Thoughts?
zw