diff options
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 3690ca1edcf..5b87c528e31 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -2814,6 +2814,13 @@ ProcessInstanceSettings::GetInstanceSettingsValue (const SettingEntry &entry, { value.AppendString (UserSettingsController::EnumToString (entry.enum_values, (int) m_plugin)); } + else if (var_name == InheritHostEnvVarName()) + { + if (m_inherit_host_env) + value.AppendString ("true"); + else + value.AppendString ("false"); + } else if (var_name == DisableASLRVarName()) { if (m_disable_aslr) |