diff options
author | Chris Wailes <chriswailes@google.com> | 2014-06-04 15:16:35 -0700 |
---|---|---|
committer | Chris Wailes <chriswailes@google.com> | 2014-06-04 15:16:35 -0700 |
commit | 7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682 (patch) | |
tree | 913476acb4cff19a0e80154c264d00260c62089e /tools | |
parent | 806b35f1b384b253e41d7f56d43aef8ce3c14219 (diff) | |
download | external_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.zip external_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.tar.gz external_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.tar.bz2 |
Updated the makefiles to use AArch64 name.
The makefiles had previously used the name Arm64 for the AArch64
libraries. This patch changes all of makefiles to use the correct
name for the backend.
Change-Id: Ida062b1173b719b6d2519618827c3a67ede8b479
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llc/Android.mk | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tools/llc/Android.mk b/tools/llc/Android.mk index f9c87fe..66ecb54 100644 --- a/tools/llc/Android.mk +++ b/tools/llc/Android.mk @@ -59,14 +59,14 @@ llvm_llc_STATIC_LIBRARIES := \ libLLVMSupport \ libLLVMObject -llvm_llc_arm64_STATIC_LIBRARIES := \ - libLLVMARM64Info \ - libLLVMARM64AsmParser \ - libLLVMARM64CodeGen \ - libLLVMARM64Disassembler \ - libLLVMARM64Desc \ - libLLVMARM64AsmPrinter \ - libLLVMARM64Utils +llvm_llc_aarch64_STATIC_LIBRARIES := \ + libLLVMAArch64Info \ + libLLVMAArch64AsmParser \ + libLLVMAArch64CodeGen \ + libLLVMAArch64Disassembler \ + libLLVMAArch64Desc \ + libLLVMAArch64AsmPrinter \ + libLLVMAArch64Utils @@ -87,7 +87,7 @@ LOCAL_STATIC_LIBRARIES := \ $(llvm_llc_arm_STATIC_LIBRARIES) \ $(llvm_llc_mips_STATIC_LIBRARIES) \ $(llvm_llc_x86_STATIC_LIBRARIES) \ - $(llvm_llc_arm64_STATIC_LIBRARIES) \ + $(llvm_llc_aarch64_STATIC_LIBRARIES) \ $(llvm_llc_STATIC_LIBRARIES) LOCAL_LDLIBS += -lpthread -lm -ldl @@ -121,8 +121,8 @@ LOCAL_STATIC_LIBRARIES_arm += $(llvm_llc_arm_STATIC_LIBRARIES) LOCAL_STATIC_LIBRARIES_mips += $(llvm_llc_mips_STATIC_LIBRARIES) LOCAL_STATIC_LIBRARIES_x86 += $(llvm_llc_x86_STATIC_LIBRARIES) LOCAL_STATIC_LIBRARIES_x86_64 += $(llvm_llc_x86_STATIC_LIBRARIES) -LOCAL_STATIC_LIBRARIES_arm64 += $(llvm_llc_arm64_STATIC_LIBRARIES) -LOCAL_STATIC_LIBRARIES_arm64 += $(llvm_llc_arm_STATIC_LIBRARIES) +LOCAL_STATIC_LIBRARIES_aarch64 += $(llvm_llc_aarch64_STATIC_LIBRARIES) +LOCAL_STATIC_LIBRARIES_aarch64 += $(llvm_llc_arm_STATIC_LIBRARIES) LOCAL_STATIC_LIBRARIES += $(llvm_llc_STATIC_LIBRARIES) |