• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if(Mips IN_LIST LLVM_TARGETS_TO_BUILD)
2  set(mips_target Mips)
3endif()
4
5add_lldb_library(lldbPluginInstructionMIPS64 PLUGIN
6  EmulateInstructionMIPS64.cpp
7
8  LINK_LIBS
9    lldbCore
10    lldbHost
11    lldbInterpreter
12    lldbSymbol
13    lldbPluginProcessUtility
14  LINK_COMPONENTS
15    MC
16    Support
17    ${mips_target}
18  )
19