1 //===-- lldb-python.h -------------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 10 #define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 11 12 #include "lldb/Host/Config.h" 13 14 // Python.h needs to be included before any system headers in order to avoid 15 // redefinition of macros 16 17 #ifdef LLDB_DISABLE_PYTHON 18 // Python is disabled in this build 19 #else 20 #include "llvm/Support/Compiler.h" 21 #if defined(_WIN32) 22 // If anyone #includes Host/PosixApi.h later, it will try to typedef pid_t. We 23 // need to ensure this doesn't happen. At the same time, Python.h will also try 24 // to redefine a bunch of stuff that PosixApi.h defines. So define it all now 25 // so that PosixApi.h doesn't redefine it. 26 #define NO_PID_T 27 #endif 28 #if defined(__linux__) 29 // features.h will define _POSIX_C_SOURCE if _GNU_SOURCE is defined. This value 30 // may be different from the value that Python defines it to be which results 31 // in a warning. Undefine _POSIX_C_SOURCE before including Python.h The same 32 // holds for _XOPEN_SOURCE. 33 #undef _POSIX_C_SOURCE 34 #undef _XOPEN_SOURCE 35 #endif 36 37 // Include locale before Python so _PY_PORT_CTYPE_UTF8_ISSUE doesn't cause 38 // macro redefinitions. 39 #if defined(__APPLE__) 40 #include <locale> 41 #endif 42 43 // Include python for non windows machines 44 #include <Python.h> 45 #endif // LLDB_DISABLE_PYTHON 46 47 #endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H 48