Skip to content

Commit

Permalink
lldb: Do not build for mips as well
Browse files Browse the repository at this point in the history
lldb-server is not fully ported for mips yet see
https://reviews.llvm.org/D102872

Signed-off-by: Khem Raj <raj.khem@gmail.com>
  • Loading branch information
kraj committed Jun 8, 2021
1 parent 85c1247 commit 1a90a80
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions recipes-devtools/clang/clang_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,13 @@ LLVM_EXPERIMENTAL_TARGETS_TO_BUILD_append = ";${@get_clang_experimental_target_a
HF = "${@ bb.utils.contains('TUNE_CCARGS_MFLOAT', 'hard', 'hf', '', d)}"
HF[vardepvalue] = "${HF}"

LLVM_PROJECTS ?= "clang;clang-tools-extra;lld;lldb"
# There is no LLDB support for RISCV
LLVM_PROJECTS_riscv32 ?= "clang;clang-tools-extra;lld"
LLVM_PROJECTS_riscv64 ?= "clang;clang-tools-extra;lld"
LLVM_PROJECTS ?= "clang;clang-tools-extra;lld${LLDB}"
LLDB ?= ";lldb"
# LLDB support for RISCV/Mips32 does not work yet
LLDB_riscv32 = ""
LLDB_riscv64 = ""
LLDB_mips = ""
LLDB_mipsel = ""

#CMAKE_VERBOSE = "VERBOSE=1"

Expand Down

0 comments on commit 1a90a80

Please sign in to comment.