diff options
author | Christopher Ferris <cferris@google.com> | 2013-11-06 15:40:23 -0800 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2013-11-06 15:40:23 -0800 |
commit | 22f91cb3a1e3f4618952a5544d81e21d6b84c043 (patch) | |
tree | b650bb140bb7d48297795a5a5d08764c5d28f32d | |
parent | a2d1469c773d809261d830d2f3cb3f6a7b6cdade (diff) | |
download | system_core-22f91cb3a1e3f4618952a5544d81e21d6b84c043.zip system_core-22f91cb3a1e3f4618952a5544d81e21d6b84c043.tar.gz system_core-22f91cb3a1e3f4618952a5544d81e21d6b84c043.tar.bz2 |
Enable libunwind on arm platforms.
Bug: 8410085
Change-Id: I8a645ec0e04b38fc186bbc0f0cc597e31b05cc55
-rw-r--r-- | libbacktrace/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbacktrace/Android.mk b/libbacktrace/Android.mk index 50354d0..eb55b47 100644 --- a/libbacktrace/Android.mk +++ b/libbacktrace/Android.mk @@ -23,7 +23,7 @@ common_shared_libs := \ liblog \ # To enable using libunwind on each arch, add it to the list below. -ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),)) +ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm)) #---------------------------------------------------------------------------- # The native libbacktrace library with libunwind. |