On Wed, Jul 23, 2025 at 1:33 PM Ross Burton <ross.bur...@arm.com> wrote: > Is there a way to get timing information from GNU Make about what targets are > being built and when they were started/finished?
make -p prints the mtime of the targets after the build is complete. make won't print the start time of a job. Ofcourse the recipes can be enhanced to print the start time. It is probably easier to obtain the mtime of your targets from the filesystem. regards, Dmitry