How to see verbose compile command in AOSP build? ndk-build provides V=1 option. What about build from source? May I type similar to
. build/envsetup.sh
lunch
make liblog V=1
and see raw compiler execution lines?
If you want to see the full compile/link/whatever commands being run, use the special showcommands target (which isn't a target to build per se, but a modifier to the output of the make command). E.g.: to build liblog you would do:
. build/envsetup.sh
lunch
$ make showcommands liblog