Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Nov 2014 17:24:12 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r275129 - projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix
Message-ID:  <201411261724.sAQHOCiM063485@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411261724.sAQHOCiM063485>