Hello everyone,
I'm currently studying Android building procedures (with Android 8.0). I build some modules with "mma" and I see that ninja output logs to ./out/verbose.log.gz.
When I check the logs, I find that Ninja creates some ".rsp files" to represent long strings during the build. I would rather print the original strings or keep the rsp files. A relative link is as followed:
It seems like that I should pass the "-d keeprsp" option to ninja.
However, I find that the build system is so complicated, and I find no way to do that. I try to modify ./out/ninja-aosp_x86_64.sh and build with the script, but it fails (due to the lack of the parameters or environment, I guess).
So how can I pass the option to ninja? Is there any other way to know the contents in .rsp files?
Any suggestion would be appreciated:)