-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
33 lines (26 loc) · 770 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ndk-on-msys
-- What drive me --
Android NDK require cygwin to build code.
But for who use mingw+msys, as me, it is not a good idea to install cygwin.
So i write this script to run NDK on msys.
-- Install --
place ndk-msys-build and msys_build to NDK home directory.
-- Usage --
use command ndk-msys-build insted of ndk-build, like below:
<NDK>/ndk-msys-build
-- Package structure --
-+--
|-- ndk-msys-build
\-- msys_build
+-- cygwin1.dll
\-- cygz.dll
ndk-msys-build: the wrap script around ndk-build
cygwin1.dll: extract from cygwin/cygwin-1.7.7-1.tar.bz2
cygz.dll: extract from cygwin/zlib-1.2.3-2.tar.bz2
-- Work envirement --
Android NDK:
android-ndk-r4b
Msys:
$ uname -a
MINGW32_NT-5.1 MyComputer 1.0.11(0.46/3/2) 2009-07-11 17:46 i686 Msys
-- End --