With make, I can do a make -k to cause the compiler to try compiling every file that can be tried, to show me as many compilation errors as possible. How do I do the equivalent with ndk-build in the Android NDK?
With make , I can do a make -k to cause the compiler to
Share
ndk-build pass all the arguments to make, so
ndk-build -kshould work.