diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2013-01-24 16:42:40 -0500 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2013-01-24 16:42:40 -0500 |
commit | 89502f96310ef7221424e508346c47dc3e13cfad (patch) | |
tree | af0bc6f634fa43ffa744f7c807949dd7e656601c /config | |
parent | a38374f533b5b69750a2150a57cce8759c3e45b4 (diff) |
android: Fix LDFLAGS when building for ARMv7
Diffstat (limited to 'config')
-rw-r--r-- | config/android.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/android.config b/config/android.config index 5d9ef9f9..015e161c 100644 --- a/config/android.config +++ b/config/android.config @@ -51,7 +51,7 @@ if target_arch in [Architecture.ARM, Architecture.ARMv7]: cflags += ' -march=armv5te -mtune=xscale -msoft-float' elif target_arch == Architecture.ARMv7: cflags += ' -march=armv7-a -mfloat-abi=softfp -mfpu=vfp' - ldflags = " -Wl,--fix-cortex-a8 " + ldflags += " -Wl,--fix-cortex-a8 " if target_arch == Architecture.X86: cflags += ' -march=i686 -fomit-frame-pointer -fstrict-aliasing -funswitch-loops -finline-limit=300' |