tech74
tech74

Reputation: 301

ndk-build keeps rebuilding all sources

I have set up Eclipse to build my C/C++ files. I created a builder and set it to point at the ndk-build executable in the ndk install tree. Each time I run this it keeps rebuilding all sources. I am not passing any arguments so why would it do this?

Upvotes: 4

Views: 1698

Answers (1)

Marvin Pinto
Marvin Pinto

Reputation: 30998

It doesn't look like it's possible to currently perform incremental builds using stock android-ndk. You could, however, do it manually. It's quite an involved process because you'll have to redo the makefiles and such. See this answer for a description of what this involves.

Upvotes: 5

Related Questions