The SBEnvironment classes and the setting for the environment are currently
used just for launching processes. lldb doesn’t keep track of the “live” state
of the environment in a process - which can change as the program runs. It
would certainly be useful to have a “printenv” function in lldb
Hi all,
I'm trying to read the value of an environment variable that a process was
launched with but to which lldb attached to after it launched.
SBEnvironment looked interesting but I tried using
```
script
print(lldb.debugger.GetSelectedTarget().GetEnvironment().Get("PRINT_ME")
```
and that prin