aboutsummaryrefslogtreecommitdiffstats
path: root/libm
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-06-24 04:31:08 +0000
committerDan Albert <danalbert@google.com>2014-06-24 04:31:08 +0000
commit71f9b34fbeef00f3bd34364dadad41bff60b6b1d (patch)
tree093c5a57b9b5409115d0230bdf8d325ddf3b2d0e /libm
parent4e4e1a5d78ff6dd9394b9b116c012046da409e99 (diff)
downloadandroid_bionic-71f9b34fbeef00f3bd34364dadad41bff60b6b1d.tar.gz
android_bionic-71f9b34fbeef00f3bd34364dadad41bff60b6b1d.tar.bz2
android_bionic-71f9b34fbeef00f3bd34364dadad41bff60b6b1d.zip
Revert "Revert "Prevent symbols from libgcc from being reexported.""
This reverts commit 4e4e1a5d78ff6dd9394b9b116c012046da409e99. Change-Id: I8e78c3a59598e052e02965dd37b3fba8f567eed9
Diffstat (limited to 'libm')
-rw-r--r--libm/Android.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/libm/Android.mk b/libm/Android.mk
index 90b4906e1..994caa0c6 100644
--- a/libm/Android.mk
+++ b/libm/Android.mk
@@ -291,5 +291,12 @@ LOCAL_MODULE:= libm
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
LOCAL_WHOLE_STATIC_LIBRARIES := libm
+
+# We'd really like to do this for all architectures, but since this wasn't done
+# before, these symbols must continue to be exported on LP32 for binary
+# compatibility.
+LOCAL_LDFLAGS_arm64 := -Wl,--exclude-libs,libgcc.a
+LOCAL_LDFLAGS_mips64 := -Wl,--exclude-libs,libgcc.a
+LOCAL_LDFLAGS_x86_64 := -Wl,--exclude-libs,libgcc.a
include $(BUILD_SHARED_LIBRARY)
endif