Someone please help google create instuctions that windows users understand. googles "instructions"

Posted by nathan on Stack Overflow See other posts from Stack Overflow or by nathan
Published on 2010-04-06T22:15:07Z Indexed on 2010/04/06 22:23 UTC
Read the original article Hit count: 315

Filed under:
|
|

Below are the only instructions i managed to find from google on how to install the android NDK, it is written as if we all run Linux and presumes we all understand what these obscure tools are. My comments and questions appear in Italics if somone who knows unix and windows would translate for google that would be great!


Android NDK Installation

Introduction:

Please read docs/OVERVIEW.TXT to understand what the Android NDK is and is not. This file gives instructions on how to properly setup your NDK.

I. Requirements:

The Android NDK currently requires a Linux, OS X or Windows host operating system. Windows users will need to install Cygwin (http://www.cygwin.com) to use it. Note that running the NDK under MSys is not supported.

You will need to have the Android SDK and its dependencies installed. The NDK cannot generate final application packages (.apk files), only the shared library files that can go into them.

IMPORTANT: The Android NDK can only be used to target system images using the Cupcake (1.5) or later releases of the platform. This is due to subtle toolchain and ABI related changed that make it incompatible with 1.0 and 1.1 system images.

The NDK requires GNU Make 3.81 or later being available on your development system. Earlier versions of GNU Make might work but have not been tested.

You can check this by running 'make -v' from the command-line. The output should look like:

GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
...

On certain systems, GNU Make might be available through a different command like 'gmake' or 'gnumake'. For these systems, replace 'make' by the appropriate command when invoking the NDK build system as described in the documentation.

Great some strange thing called gnu make.. if your not going to tell me what it does maybe you then at least you could give me a URL to it?

The NDK also requires a Nawk or GNU Awk executable being available on your development system. Note that the original 'awk' program doesn't implement the 'match' and 'substr' functions used by the NDK build system.

Ok another tool, with 1 of 2 possible names, but not the third... and again where should i download this??

On Windows, you will need to install a recent release of Cygwin to use the NDK. See http://www.cygwin.com for instructions.

Woohoo a URL! download took about a day because these install instructions do not specify what parts to download.

II. Preparing your installation prebuilt cross-toolchain binaries:

After installing and unarchiving the NDK, you will need to run the following command from the root folder:

build/host-setup.sh

hello? windows dont run nothing but .exe .com or .dll, just tell me how you want me to run it..

This will test your setup and make sure the NDK can work properly.

Nothing is said about where any of these things need to be installed to (what directory)

© Stack Overflow or respective owner

Related posts about android

Related posts about android-ndk