1 //===-- lldb-python.h -------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 11 #define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 12 13 // Python.h needs to be included before any system headers in order to avoid 14 // redefinition of macros 15 16 #ifdef LLDB_DISABLE_PYTHON 17 // Python is disabled in this build 18 #else 19 #include "llvm/Support/Compiler.h" 20 #if defined(_WIN32) 21 // If anyone #includes Host/PosixApi.h later, it will try to typedef pid_t. We 22 // need to ensure this doesn't happen. At the same time, Python.h will also try 23 // to redefine a bunch of stuff that PosixApi.h defines. So define it all now 24 // so that PosixApi.h doesn't redefine it. 25 #define NO_PID_T 26 #endif 27 #if defined(__linux__) 28 // features.h will define _POSIX_C_SOURCE if _GNU_SOURCE is defined. This value 29 // may be different from the value that Python defines it to be which results 30 // in a warning. Undefine _POSIX_C_SOURCE before including Python.h The same 31 // holds for _XOPEN_SOURCE. 32 #undef _POSIX_C_SOURCE 33 #undef _XOPEN_SOURCE 34 #endif 35 36 // Include python for non windows machines 37 #include <Python.h> 38 #endif // LLDB_DISABLE_PYTHON 39 40 #endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 41