I was just suggested to port some signal processing code to use the Android NDK to speed up the process, but I'm wondering 1. where to install it to and 2. what tool-chain to use

I'd prefer not downloading the 3.5GB Mac Developer Tools if possible. I don't have access to an install cd that has it. Want to try and get this done asap. Does anyone know a way to get NDK development running quickly on OSX(snow leopard)?

link|improve this question

80% accept rate
Just download the ndk for mac, and follow the docs/INSTALL.txt. Everything will be fine. – qrtt1 Dec 22 '10 at 7:07
@qrtt1 that didn't exactly work for me. – wajiw Dec 22 '10 at 7:10
feedback

2 Answers

If you install Xcode, that will install Make.

link|improve this answer
The Xcode that came with the Mac should be sufficient. No need to download. – Ashton Dec 16 '10 at 5:52
Is Xcode on one of the install DVD's? It wasn't pre-installed on my Mac. – Ravi Dec 16 '10 at 15:10
Yes, it's in the Developer package on the install DVD. – Gamma Draconis Dec 21 '10 at 18:40
I don't have the install DVD and there is no make on my computer. I really want to do this without installing Xcode. – wajiw Dec 29 '10 at 17:26
feedback

Unzip the NDK package for Mac OS X anywhere, then add it to your path. That's all you need to build code with the NDK. The NDK includes its own GCC-based toolchain, so you don't even need to have Xcode installed.

Go to the samples in the NDK and type ndk-build in the console to build them.

link|improve this answer
I get an error when I do that: ERROR: Cannot find 'make' program. Please install Cygwin make package or define the GNUMAKE variable to point to it. – wajiw Dec 15 '10 at 20:55
It doesn't have a make. It expects to use the one in the developer package. If your development platform is a Mac, then you ought to use the tools Apple provides. It will make your life a lot easier, even if you prefer another IDE to Xcode. – Gamma Draconis Dec 21 '10 at 18:43
feedback

protected by Will Jan 5 '11 at 17:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.