svn commit: r275129 - projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix
Ed Maste
emaste at FreeBSD.org
Wed Nov 26 17:24:13 UTC 2014
Author: emaste
Date: Wed Nov 26 17:24:12 2014
New Revision: 275129
URL: https://svnweb.freebsd.org/changeset/base/275129
Log:
There is no Python in the FreeBSD base system
Replaced:
projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/
- copied from r275075, vendor/lldb/dist/source/Host/posix/
Modified:
projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
Modified: projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
==============================================================================
--- vendor/lldb/dist/source/Host/posix/HostInfoPosix.cpp Tue Nov 25 21:08:31 2014 (r275075)
+++ projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp Wed Nov 26 17:24:12 2014 (r275129)
@@ -173,6 +173,8 @@ HostInfoPosix::ComputeHeaderDirectory(Fi
bool
HostInfoPosix::ComputePythonDirectory(FileSpec &file_spec)
{
+ return false; // No Python in FreeBSD base system
+#if 0
FileSpec lldb_file_spec;
if (!GetLLDBPath(lldb::ePathTypeLLDBShlibDir, lldb_file_spec))
return false;
@@ -190,4 +192,5 @@ HostInfoPosix::ComputePythonDirectory(Fi
file_spec.GetDirectory().SetCString(raw_path);
return true;
+#endif
}
More information about the svn-src-projects
mailing list