diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-23 20:07:29 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-23 20:07:29 +0000 |
commit | 906f329724f7819ad24ad59fe2aed36cfdca5c24 (patch) | |
tree | 410cd6a9bc106c7cadf38edefa48ba796a12f3c9 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | f405dd62ecd67d8d4d389620d7c3949af0707bdc (diff) | |
download | bcm5719-llvm-906f329724f7819ad24ad59fe2aed36cfdca5c24.tar.gz bcm5719-llvm-906f329724f7819ad24ad59fe2aed36cfdca5c24.zip |
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
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index fc76f0470d3..a44b5a9f68c 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -15,11 +15,7 @@ #else -#if defined (__APPLE__) -#include <Python/Python.h> -#else #include <Python.h> -#endif #include "lldb/Interpreter/ScriptInterpreterPython.h" |