From c89ed0fd756ae58fe52a15abf31a842b30881995 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 15 Aug 2017 15:03:30 -0700 Subject: llvm: Swith to ARM ISA on armv5 and armv4t When Thumb1 is used as default ISA, there are linker issues, therefore always use ARM ISA Fixes relocation truncated to fit: R_ARM_THM_CALL against symbol `__gnu_thumb1_case_uhi' defined in .text section (From OE-Core rev: a0c9d19b46ccefbb90eea5965e11ea21d13242b4) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-devtools/llvm/llvm_git.bb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/recipes-devtools/llvm') diff --git a/meta/recipes-devtools/llvm/llvm_git.bb b/meta/recipes-devtools/llvm/llvm_git.bb index 09031f5477..632178fd77 100644 --- a/meta/recipes-devtools/llvm/llvm_git.bb +++ b/meta/recipes-devtools/llvm/llvm_git.bb @@ -52,6 +52,9 @@ LLVM_TARGETS ?= "${@get_llvm_target_arch(bb, d)}" LLVM_TARGETS_prepend_x86 = "AMDGPU;" LLVM_TARGETS_prepend_x86-64 = "AMDGPU;" +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv4t = "arm" + EXTRA_OECMAKE += "-DLLVM_ENABLE_ASSERTIONS=OFF \ -DLLVM_ENABLE_EXPENSIVE_CHECKS=OFF \ -DLLVM_ENABLE_PIC=ON \ -- cgit v1.2.3-54-g00ecf