How to Download Android NDK Tools, android ndk links tools and links. Mac OS X 64-bit. Ndk_r9d(March 2014). Windows 32-bit: Windows 64-bit.
$ ndk-which strip /Users/mark.simpson/Development/android-ndk-r9d/toolchains/arm-linux-androideabi-4.6/prebuilt/darwin-x8664/bin/arm-linux-androideabi-strip If I manually find & invoke the version I need (e.g. By changing the build script to have a hard-coded path of C: android-ndk-r9d toolchains arm-linux-androideabi-4.6 prebuilt windows-x8664 bin arm-linux-androideabi-strip.exe) then it functions as expected, the problem is that ndk-which isn't returning the path to the tool. So my question is basically, how do I get the correct version of strip when using windows? We generally use NDK r9d with GCC 4.6 for our C default build, but also build a C11 version of our software using GCC 4.8, so I'm reluctant to hard-code paths or hack up our build scripts, as we have several developers and build agents to maintain. I noticed that ndk-which is a shell script that actually invokes make (which exists on my mac, but not on my windows machine), so I'm guessing that may be something to do with it?
I know the NDK documentation used to talk about installing cygwin/make, but I've not noticed any mention of these in the r10d documents. I'd appreciate any suggestions on how to get past this problem, or alternative approaches I should consider. Thanks, Mark Mark Simpson 5/2/2015, 0:40 น.
Looks like you can construct the link to the NDK that you want and download it from dl.google.com: Linux example: OS X example: Windows example: Extensions up to r10b:.tar.bz2 for linux / os x and.zip for windows. Since r10c the extensions have changed to:.bin for linux / os x and.exe for windows Since r11:.zip for linux and OS X as well, a new URL base, and no 32 bit versions for OS X and linux. I came across this just now doing the same search, and found the other answers are far too specific. I also google searched for downloading android-ndk-r8 and found next to nothing. To get the correct version, I instead went here: And copied the link to the download I needed, and pasted it into the URL bar. There, I edited the version to reflect what I wanted (for example, I changed r8b to r8). Then I pressed enter, and the correct download began.
As long as the naming conventions remain the same, this should work across all versions. Edit: This convention did change. Some older versions are now available in the. For even older versions, refer to the links provided.