I need an IDE that must:
I have a large existing C++ project and am porting it to Android/NDK.
(Neither Code::Blocks nor Eclipse do the 3rd. Maybe I am missing something?)
I configured Code::Blocks for Android NDK/JNI development, but there's a trick. Codeblocks believes that it can know what compiler you use, and wants to stop you from using something it does not know. You have to trick it.
-j 4
)
And one final note: if your configuration does not work, you get no meaningful diagnostics.
PS Here's my Makefile:
all:
@echo '====all===='
pwd;~/android-ndk-r7/ndk-build -j 4
clean:
@echo '====clean===='
pwd;~/android-ndk-r7/ndk-build clean
.PHONY: clean
.PHONY: all
Take a look at ARM Development Studio 5 (DS-5). The Community Edition is free for non-commercial use and offers integration with the NDK in Eclipse.
Further, I believe if you dig around a bit you'll find non-official instructions from various sources on how to integrate the NDK in Elipse. For example, look at some of this:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With