David 'Digit' Turner | 979c98c | 2009-05-20 16:08:19 +0200 | [diff] [blame^] | 1 | A simple change log for the Android NDK |
| 2 | |
| 3 | ------------------------------------------------------------------------------- |
| 4 | Current 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 | ------------------------------------------------------------------------------- |
| 29 | android-1.5_r1 released. |
| 30 | |
| 31 | Initial version. |
| 32 | |
| 33 | The 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>) |