blob: 39ac97c9742f8078f71b190605c10924432f9058 [file] [log] [blame]
David 'Digit' Turner979c98c2009-05-20 16:08:19 +02001A simple change log for the Android NDK
2
3-------------------------------------------------------------------------------
4Current version:
5
6- Expose the zlib headers <zlib.h> and <zconf.h> as part of the stable
7 ABIs.
8
9- Use the --no-undefined flag at link time by default when generating
10 binaries. This means that the linker will issue an "undefined symbol"
11 error when trying to build a shared library that references an undefined
12 variable or function. This is to help catch simple bugs, but you can
13 override this by setting LOCAL_ALLOW_UNDEFINED_SYMBOLS to true.
14
15- Fix a typo that prevented APP_CFLAGS, APP_CPPFLAGS, etc.. to work as
16 advertized in the build system.
17
18- Fix auto-dependency computations
19
20- Fix dependency between the generated shared libraries and the copy that
21 is installed in under the application's project path.
22
23- "make APP=<app> clean" now properly cleans the installed binaries.
24
25- Fix the build-toolchain.sh to refer to the proper download location for the
26 toolchain source tarball.
27
28-------------------------------------------------------------------------------
29android-1.5_r1 released.
30
31Initial version.
32
33The only headers that are publicly exposed are for:
34
35- the C library
36- the Math library (<math.h>)
37- the JNI interface (<jni.h>)