Skip to content

Commit

Permalink
[LLDB][GUI] Add Process Launch form
Browse files Browse the repository at this point in the history
This patch adds a process launch form. Additionally, a LazyBoolean field
was implemented and numerous utility methods were added to various
fields to get the launch form working.

Differential Revision: https://reviews.llvm.org/D107869
  • Loading branch information
OmarEmaraDev authored and clayborg committed Aug 18, 2021
1 parent 643f2be commit 82507f1
Show file tree
Hide file tree
Showing 3 changed files with 550 additions and 5 deletions.
9 changes: 9 additions & 0 deletions lldb/include/lldb/Target/Target.h
Expand Up @@ -122,7 +122,16 @@ class TargetProperties : public Properties {

void SetRunArguments(const Args &args);

// Get the whole environment including the platform inherited environment and
// the target specific environment, excluding the unset environment variables.
Environment GetEnvironment() const;
// Get the platform inherited environment, excluding the unset environment
// variables.
Environment GetInheritedEnvironment() const;
// Get the target specific environment only, without the platform inherited
// environment.
Environment GetTargetEnvironment() const;
// Set the target specific environment.
void SetEnvironment(Environment env);

bool GetSkipPrologue() const;
Expand Down

0 comments on commit 82507f1

Please sign in to comment.