Slowness of glibc build process

At least 50% of the time the glibc build spends in GNU make is spent adding pattern rules while reading in the makefile. Pattern rules are those containing "%" wildcards. glibc uses a lot of pattern rules, and make takes O(n^2) time reading them in.

How could we speed up glibc's use of make?

How can we test that any changes don't change the meaning?

GlibcBuildSlowness (last edited 2008-05-20 13:33:22 by MarkSeaborn)