I use ninja build system and i got some errors in the build process.
Ninja prints the command that raised the error and it seems that every commands look like this:
: && /usr/bin/g++ -Wno-attributes -pthread -g3 -ggdb3 ...
What the point of starting the command with : &&
? I understand that it lokks like if true then cmd
but I don’t get the point.
4