Change lldb from building against a Python framework out of

the installed SDK to using the current OS installed headers/libraries.
This change is to address the removal of the Python framework
from the Mac OS X 10.9 (Mavericks) SDK, and is the recommended
workaround via https://developer.apple.com/library/mac/technotes/tn2328/_index.html

llvm-svn: 195557
This commit is contained in:
Jason Molenda
2013-11-23 20:07:29 +00:00
parent f405dd62ec
commit 906f329724
10 changed files with 116 additions and 112 deletions

View File

@@ -15,11 +15,7 @@
#else
#if defined (__APPLE__)
#include <Python/Python.h>
#else
#include <Python.h>
#endif
#include "lldb/Interpreter/ScriptInterpreterPython.h"