When calling strace with following options:
strace -f -tt -e trace=execve,vfork,clone,chdir,open,rename,link,symlink,read -e signal=!SIGCHLD -v -s 10485760 -o log.txt make
for example to build nano (2.0.7), when a file is opened with O_RDWR|O_LARGEFILE option, strace will dump out very large numbers of nullbytes read from that file.
In the case of nano this leads to a logfile size of 100 MB, where the logfile size of strace ver. 4.5.17 only becomes 14,4 MB.
Beside of the logfile size, dumping all that nullbytes takes a lot of time, so building nano with the above strace options will take ca. 5 minutes with strace 4.5.18, while it takes a few seconds doing the same with strace 4.5.17