[Lldb-commits] [PATCH] D29406: Unify PlatformPOSIX::ResolveExecutable
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 1 10:50:05 PST 2017
labath added inline comments.
================
Comment at: source/Plugins/Platform/POSIX/PlatformPOSIX.cpp:163
+ // Resolve any executable within a bundle on MacOSX
+ Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec());
+
----------------
This is the bit that was only present on darwin.
================
Comment at: source/Plugins/Platform/POSIX/PlatformPOSIX.cpp:198
+
+ error = ModuleList::GetSharedModule(resolved_module_spec,
+ exe_module_sp, module_search_paths_ptr, nullptr, nullptr);
----------------
This is the bit that was only present on linux.
https://reviews.llvm.org/D29406
More information about the lldb-commits
mailing list