OSDN Git Service

Ensure LOCAL_LDLIBS is cleared by the $(CLEAR_VARS) script
[android-x86/ndk.git] / docs / CHANGES.TXT
1 Android NDK ChangeLog:
2
3 -------------------------------------------------------------------------------
4 current version
5
6 - Fix build/host-setup.sh to:
7   * execute as a Bourne shell script
8   * remove unused host gcc dependency
9   * improve Windows host auto-detection
10   * add GNU Make version check
11   * ensure that the script is run from $NDKROOT as build/host-setup.sh
12   * add --help, --verbose and --no-make-check options
13
14 - Properly add sysroot library search path at build time. This makes a line
15   in Android.mk like:
16
17      LOCAL_LDLIBS := -lz
18
19   Actually work correctly, instead of having the linker complaining that it
20   could not find the corresponding libz.so library. Also clear LOCAL_LDLIBS
21   in $(CLEAR_VARS) script.
22
23 - Generate thumb binaries by default.
24
25 - Add support for LOCAL_ARM_MODE in Android.mk.
26
27 - Add support for the '.arm' suffix in source file names to force the
28   compilation of a single source in arm (32-bit) mode.
29
30 - Generate proper unoptimized versions of binaries when APP_OPTIM := debug
31
32 - Add support for LOCAL_C_INCLUDES in Android.mk
33
34 - Fix compilation of assembler files (e.g. foo.S)
35
36 -------------------------------------------------------------------------------
37 android-1.5_r1 released.