This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 6023424bd [windows] re-call signal in sigint_handler for Windows new d6fa06e83 [lldb] Let table gen create command option initializers.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CMakeLists.txt | 2 + cmake/modules/AddLLDB.cmake | 35 ++++++- source/Commands/CMakeLists.txt | 6 ++ source/Commands/CommandObjectBreakpoint.cpp | 13 +-- source/Commands/CommandObjectHelp.cpp | 7 +- source/Commands/CommandObjectSettings.cpp | 17 ++-- source/Commands/CommandObjectTarget.cpp | 5 +- source/Commands/Options.td | 53 ++++++++++ source/Commands/OptionsBase.td | 62 ++++++++++++ utils/TableGen/CMakeLists.txt | 8 ++ utils/TableGen/LLDBOptionDefEmitter.cpp | 152 ++++++++++++++++++++++++++++ utils/TableGen/LLDBTableGen.cpp | 71 +++++++++++++ utils/TableGen/LLDBTableGenBackends.h | 34 +++++++ 13 files changed, 436 insertions(+), 29 deletions(-) create mode 100644 source/Commands/Options.td create mode 100644 source/Commands/OptionsBase.td create mode 100644 utils/TableGen/CMakeLists.txt create mode 100644 utils/TableGen/LLDBOptionDefEmitter.cpp create mode 100644 utils/TableGen/LLDBTableGen.cpp create mode 100644 utils/TableGen/LLDBTableGenBackends.h