mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 15:41:35 +08:00
The bugreport command exists to create domain-specific bug reports. Currently it has one implementation for filing bugs on the unwinder. As far as we can tell, it has never been of use. Although not exactly the same as the reproducers, it's a bit confusing to have two parallel command trees for (kind of) the same thing. Differential revision: https://reviews.llvm.org/D65469 llvm-svn: 371132
53 lines
1.2 KiB
CMake
53 lines
1.2 KiB
CMake
lldb_tablegen(CommandOptions.inc -gen-lldb-option-defs
|
|
SOURCE Options.td
|
|
TARGET LLDBOptionsGen)
|
|
|
|
add_lldb_library(lldbCommands
|
|
CommandCompletions.cpp
|
|
CommandObjectApropos.cpp
|
|
CommandObjectBreakpoint.cpp
|
|
CommandObjectBreakpointCommand.cpp
|
|
CommandObjectCommands.cpp
|
|
CommandObjectDisassemble.cpp
|
|
CommandObjectExpression.cpp
|
|
CommandObjectFrame.cpp
|
|
CommandObjectGUI.cpp
|
|
CommandObjectHelp.cpp
|
|
CommandObjectLog.cpp
|
|
CommandObjectMemory.cpp
|
|
CommandObjectMultiword.cpp
|
|
CommandObjectPlatform.cpp
|
|
CommandObjectPlugin.cpp
|
|
CommandObjectProcess.cpp
|
|
CommandObjectQuit.cpp
|
|
CommandObjectRegister.cpp
|
|
CommandObjectReproducer.cpp
|
|
CommandObjectSettings.cpp
|
|
CommandObjectSource.cpp
|
|
CommandObjectStats.cpp
|
|
CommandObjectTarget.cpp
|
|
CommandObjectThread.cpp
|
|
CommandObjectType.cpp
|
|
CommandObjectVersion.cpp
|
|
CommandObjectWatchpoint.cpp
|
|
CommandObjectWatchpointCommand.cpp
|
|
CommandObjectLanguage.cpp
|
|
|
|
LINK_LIBS
|
|
lldbBase
|
|
lldbBreakpoint
|
|
lldbCore
|
|
lldbDataFormatters
|
|
lldbExpression
|
|
lldbHost
|
|
lldbInterpreter
|
|
lldbSymbol
|
|
lldbTarget
|
|
lldbUtility
|
|
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_dependencies(lldbCommands LLDBOptionsGen)
|