From 900394bd8e5e0cf11e882067d71a85ce18401877 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Wed, 20 May 2009 16:08:19 +0200 Subject: [PATCH] Add simple change log to the NDK documentation. --- docs/CHANGES.TXT | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/CHANGES.TXT diff --git a/docs/CHANGES.TXT b/docs/CHANGES.TXT new file mode 100644 index 0000000..39ac97c --- /dev/null +++ b/docs/CHANGES.TXT @@ -0,0 +1,37 @@ +A simple change log for the Android NDK + +------------------------------------------------------------------------------- +Current version: + +- Expose the zlib headers and as part of the stable + ABIs. + +- Use the --no-undefined flag at link time by default when generating + binaries. This means that the linker will issue an "undefined symbol" + error when trying to build a shared library that references an undefined + variable or function. This is to help catch simple bugs, but you can + override this by setting LOCAL_ALLOW_UNDEFINED_SYMBOLS to true. + +- Fix a typo that prevented APP_CFLAGS, APP_CPPFLAGS, etc.. to work as + advertized in the build system. + +- Fix auto-dependency computations + +- Fix dependency between the generated shared libraries and the copy that + is installed in under the application's project path. + +- "make APP= clean" now properly cleans the installed binaries. + +- Fix the build-toolchain.sh to refer to the proper download location for the + toolchain source tarball. + +------------------------------------------------------------------------------- +android-1.5_r1 released. + +Initial version. + +The only headers that are publicly exposed are for: + +- the C library +- the Math library () +- the JNI interface () -- 2.11.0