Make --output-sync can't redirect output to /dev/null

122 Views Asked by At

I build a binary file using command

make -j8 --output-sync

And it works fine, but when I try to redirect output to /dev/null it hangs forever. The command is:

make -j8 --output-sync > /dev/null

In case I set the option --output-sync=recurse not even Ctrl+C terminate make. Any suggestion?

0

There are 0 best solutions below