drivers: improve pmdinfo generation with meson
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 25 Jan 2018 11:14:43 +0000 (11:14 +0000)
committerBruce Richardson <bruce.richardson@intel.com>
Tue, 30 Jan 2018 20:59:00 +0000 (21:59 +0100)
commit45775d75128e0ecb4dca5aee217e37921e033527
tree5fa58d221d74880adfeeb4e798ee6788409c8d8c
parent69faa6907c1f213d44e2e040bfcd797ad81efbb0
drivers: improve pmdinfo generation with meson

Since meson 0.44, changing any file inside a PMD directory (quite
correctly) triggers a full re-run of meson on build, rather than an
incremental build as with earlier versions. This rerun is needed because
we use "grep" in meson to search for files on which to run pmdinfogen, and
changing any of those files means that grep and, therefore meson, needs to
be rerun. [Previous versions of meson did not track this dependency on the
grep command, and so did incremental builds only.]

If, however, we take advantage of pmdinfogen's ability to use stdin and
stdout instead of files, we can instead use a shell script to process an
entire static archive and generate a single .c file from it. This
eliminates the need for grep, and means that changes to a PMD file only
need an incremental build - a significant time saving.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
buildtools/gen-pmdinfo-cfile.sh
drivers/meson.build