Get arm64 to compile.

Change-Id: Ica021aa134388fe7069a5de5df8036ecf0d570f8
This commit is contained in:
Christopher Ferris 2014-01-27 10:50:58 -08:00
parent fb6d601f5a
commit edbe3b4b56
2 changed files with 2 additions and 3 deletions

View File

@ -23,8 +23,7 @@ common_shared_libs := \
liblog \
# To enable using libunwind on each arch, add it to this list.
libunwind_architectures :=
#libunwind_architectures := arm
libunwind_architectures := arm64
ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),$(libunwind_architectures)))

View File

@ -43,7 +43,7 @@
#include <asm/sigcontext.h>
#include <asm/ucontext.h>
typedef struct ucontext ucontext_t;
#elif !defined(__mips__)
#elif !defined(__mips__) && !defined(__aarch64__)
#error Unsupported architecture.
#endif