12

I have a ninja build that seems to get stuck at a particular command, however if I run the command manually it completes quickly with no problems.

Is there a way to get ninja to output more debugging information than ninja -v so I can work out why it is hanging?

Timmmm
  • 88,195
  • 71
  • 364
  • 509

1 Answers1

4
prebuilts/build-tools/linux-x86/bin/ninja -d list

debugging modes:
  stats        print operation counts/timing info
  explain      explain what caused a command to execute
  keepdepfile  don't delete depfiles after they're read by ninja
  keeprsp      don't delete @response files on success
multiple modes can be enabled via -d FOO -d BAR
venkrao
  • 383
  • 4
  • 17