File tree 8 files changed +51
-19
lines changed
lldb/source/Plugins/ScriptInterpreter/Python
ScriptedPlatformPythonInterface
ScriptedProcessPythonInterface
ScriptedThreadPlanPythonInterface
8 files changed +51
-19
lines changed Original file line number Diff line number Diff line change 12
12
// LLDB Python header must be included first
13
13
#include " ../../lldb-python.h"
14
14
// clang-format on
15
-
16
15
#endif
17
16
18
17
#include " lldb/Core/PluginManager.h"
Original file line number Diff line number Diff line change 9
9
#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPLATFORMPYTHONINTERFACE_H
10
10
#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPLATFORMPYTHONINTERFACE_H
11
11
12
+ #if LLDB_ENABLE_PYTHON
13
+
14
+ // clang-format off
15
+ // LLDB Python header must be included first
16
+ #include " ../../lldb-python.h"
17
+ // clang-format on
18
+ #endif
19
+
12
20
#include " lldb/Host/Config.h"
13
21
#include " lldb/Interpreter/Interfaces/ScriptedPlatformInterface.h"
14
22
Original file line number Diff line number Diff line change 9
9
#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPROCESSPYTHONINTERFACE_H
10
10
#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_INTERFACES_SCRIPTEDPROCESSPYTHONINTERFACE_H
11
11
12
+ #if LLDB_ENABLE_PYTHON
13
+
14
+ // clang-format off
15
+ // LLDB Python header must be included first
16
+ #include " ../../lldb-python.h"
17
+ // clang-format on
18
+ #endif
19
+
12
20
#include " lldb/Host/Config.h"
13
21
#include " lldb/Interpreter/Interfaces/ScriptedProcessInterface.h"
14
22
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
+ #if LLDB_ENABLE_PYTHON
10
+
11
+ // clang-format off
12
+ // LLDB Python header must be included first
13
+ #include " ../../lldb-python.h"
14
+ // clang-format on
15
+ #endif
16
+
9
17
#include " lldb/Host/Config.h"
10
18
#include " lldb/Utility/Log.h"
11
19
#include " lldb/lldb-enumerations.h"
12
20
13
21
#if LLDB_ENABLE_PYTHON
14
22
15
- // LLDB Python header must be included first
16
- #include " ../lldb-python.h"
17
-
18
23
#include " ../ScriptInterpreterPythonImpl.h"
19
24
#include " ScriptedPythonInterface.h"
20
25
#include < optional>
Original file line number Diff line number Diff line change 16
16
// clang-format on
17
17
#endif
18
18
19
+ #include " lldb/Host/Config.h"
20
+ #include " lldb/Interpreter/Interfaces/ScriptedInterface.h"
21
+ #include " lldb/Utility/DataBufferHeap.h"
19
22
20
23
#include < optional>
21
24
#include < sstream>
22
25
#include < tuple>
23
26
#include < type_traits>
24
27
#include < utility>
25
28
26
- #include " lldb/Host/Config.h"
27
- #include " lldb/Interpreter/Interfaces/ScriptedInterface.h"
28
- #include " lldb/Utility/DataBufferHeap.h"
29
-
30
29
#if LLDB_ENABLE_PYTHON
31
30
32
31
#include " ../PythonDataObjects.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " lldb/Core/PluginManager.h"
10
- #include " lldb/Host/Config.h"
11
- #include " lldb/Utility/Log.h"
12
- #include " lldb/lldb-enumerations.h"
13
-
14
9
#if LLDB_ENABLE_PYTHON
15
10
16
11
// clang-format off
17
12
// LLDB Python header must be included first
18
13
#include " ../../lldb-python.h"
19
14
// clang-format on
15
+ #endif
16
+
17
+ #include " lldb/Core/PluginManager.h"
18
+ #include " lldb/Host/Config.h"
19
+ #include " lldb/Utility/Log.h"
20
+ #include " lldb/lldb-enumerations.h"
21
+
22
+ #if LLDB_ENABLE_PYTHON
20
23
21
24
#include " ../../SWIGPythonBridge.h"
22
25
#include " ../../ScriptInterpreterPythonImpl.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
+ #if LLDB_ENABLE_PYTHON
10
+
11
+ // clang-format off
12
+ // LLDB Python header must be included first
13
+ #include " ../../lldb-python.h"
14
+ // clang-format on
15
+ #endif
16
+
9
17
#include " lldb/Host/Config.h"
10
18
#include " lldb/Target/ExecutionContext.h"
11
19
#include " lldb/Utility/Log.h"
12
20
#include " lldb/lldb-enumerations.h"
13
21
14
22
#if LLDB_ENABLE_PYTHON
15
23
16
- // LLDB Python header must be included first
17
- #include " ../lldb-python.h"
18
-
19
24
#include " ../SWIGPythonBridge.h"
20
25
#include " ../ScriptInterpreterPythonImpl.h"
21
26
#include " ScriptedThreadPythonInterface.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
+ #if LLDB_ENABLE_PYTHON
10
+
11
+ // clang-format off
12
+ // LLDB Python header must be included first
13
+ #include " ../../lldb-python.h"
14
+ // clang-format on
15
+ #endif
16
+
9
17
#include " lldb/Host/Config.h"
10
18
#include " lldb/lldb-enumerations.h"
11
19
12
20
#if LLDB_ENABLE_PYTHON
13
21
14
- // LLDB Python header must be included first
15
- #include " lldb-python.h"
16
-
17
22
#include " Interfaces/OperatingSystemPythonInterface/OperatingSystemPythonInterface.h"
18
23
#include " Interfaces/ScriptedPlatformPythonInterface/ScriptedPlatformPythonInterface.h"
19
24
#include " Interfaces/ScriptedProcessPythonInterface/ScriptedProcessPythonInterface.h"
You can’t perform that action at this time.
0 commit comments