4

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?

Marvin Pinto
  • 30,138
  • 7
  • 37
  • 54
tech74
  • 301
  • 5
  • 20

1 Answers1

5

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.

Community
  • 1
  • 1
Marvin Pinto
  • 30,138
  • 7
  • 37
  • 54