Skip to content

Commit

Permalink
build: output source and build dirs at end of config
Browse files Browse the repository at this point in the history
The configuration run of meson produces a lot of output. When running
test-meson-builds script, or any other script which does multiple
builds, it can be useful to see the directory in which ninja is being
run. Currently this requires scrolling back to the top of the output, so
to simplify things print out the source and build directories at the end
of the config run, so they are on-screen while ninja is printing its
output immediately underneath.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
  • Loading branch information
bruce-richardson authored and tmonjalo committed Nov 19, 2024
1 parent 19a02bc commit 2169d01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,7 @@ foreach drv:dpdk_drvs_disabled
output_message += drv + ':\t' + reason + '\n\t'
endforeach
message(output_message + '\n')

message('DPDK build config complete:\n' +
' source path = "' + dpdk_source_root + '"\n' +
' build path = "' + dpdk_build_root + '"')

0 comments on commit 2169d01

Please sign in to comment.