Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c48ca82

Browse files
committedFeb 21, 2012
Patch Enrico's changes from r150558 on 2012-02-14 to build even if Python
is not available (LLDB_DISABLE_PYTHON is defined). Change build-swig-Python.sh to emit an empty LLDBPythonWrap.cpp file if this build is LLDB_DISABLE_PYTHON. Change the "Copy to Xcode.app" shell script phase in the lldb.xcodeproj to only do this copying for Mac native builds. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@151035 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b6883ec commit c48ca82

17 files changed

+95
-5
lines changed
 

‎include/lldb/API/SBDebugger.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,14 +268,18 @@ class SBDebugger
268268
SBTypeFormat
269269
GetFormatForType (SBTypeNameSpecifier);
270270

271+
#ifndef LLDB_DISABLE_PYTHON
271272
SBTypeSummary
272273
GetSummaryForType (SBTypeNameSpecifier);
274+
#endif
273275

274276
SBTypeFilter
275277
GetFilterForType (SBTypeNameSpecifier);
276278

279+
#ifndef LLDB_DISABLE_PYTHON
277280
SBTypeSynthetic
278281
GetSyntheticForType (SBTypeNameSpecifier);
282+
#endif
279283

280284
private:
281285

‎include/lldb/API/SBDefines.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ class SBTypeFilter;
6464
class SBTypeFormat;
6565
class SBTypeNameSpecifier;
6666
class SBTypeSummary;
67+
#ifndef LLDB_DISABLE_PYTHON
6768
class SBTypeSynthetic;
69+
#endif
6870
class SBTypeList;
6971
class SBValue;
7072
class SBValueList;

‎include/lldb/API/SBTypeCategory.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ namespace lldb {
4949
uint32_t
5050
GetNumFilters ();
5151

52+
#ifndef LLDB_DISABLE_PYTHON
5253
uint32_t
5354
GetNumSynthetics ();
55+
#endif
5456

5557
SBTypeNameSpecifier
5658
GetTypeNameSpecifierForFilterAtIndex (uint32_t);
@@ -61,32 +63,44 @@ namespace lldb {
6163
SBTypeNameSpecifier
6264
GetTypeNameSpecifierForSummaryAtIndex (uint32_t);
6365

66+
#ifndef LLDB_DISABLE_PYTHON
6467
SBTypeNameSpecifier
6568
GetTypeNameSpecifierForSyntheticAtIndex (uint32_t);
69+
#endif
6670

6771
SBTypeFilter
6872
GetFilterForType (SBTypeNameSpecifier);
6973

7074
SBTypeFormat
7175
GetFormatForType (SBTypeNameSpecifier);
7276

77+
#ifndef LLDB_DISABLE_PYTHON
7378
SBTypeSummary
7479
GetSummaryForType (SBTypeNameSpecifier);
80+
#endif
7581

82+
#ifndef LLDB_DISABLE_PYTHON
7683
SBTypeSynthetic
7784
GetSyntheticForType (SBTypeNameSpecifier);
85+
#endif
7886

87+
#ifndef LLDB_DISABLE_PYTHON
7988
SBTypeFilter
8089
GetFilterAtIndex (uint32_t);
90+
#endif
8191

8292
SBTypeFormat
8393
GetFormatAtIndex (uint32_t);
8494

95+
#ifndef LLDB_DISABLE_PYTHON
8596
SBTypeSummary
8697
GetSummaryAtIndex (uint32_t);
98+
#endif
8799

100+
#ifndef LLDB_DISABLE_PYTHON
88101
SBTypeSynthetic
89102
GetSyntheticAtIndex (uint32_t);
103+
#endif
90104

91105
bool
92106
AddTypeFormat (SBTypeNameSpecifier,
@@ -95,9 +109,11 @@ namespace lldb {
95109
bool
96110
DeleteTypeFormat (SBTypeNameSpecifier);
97111

112+
#ifndef LLDB_DISABLE_PYTHON
98113
bool
99114
AddTypeSummary (SBTypeNameSpecifier,
100115
SBTypeSummary);
116+
#endif
101117

102118
bool
103119
DeleteTypeSummary (SBTypeNameSpecifier);
@@ -109,12 +125,14 @@ namespace lldb {
109125
bool
110126
DeleteTypeFilter (SBTypeNameSpecifier);
111127

128+
#ifndef LLDB_DISABLE_PYTHON
112129
bool
113130
AddTypeSynthetic (SBTypeNameSpecifier,
114131
SBTypeSynthetic);
115132

116133
bool
117134
DeleteTypeSynthetic (SBTypeNameSpecifier);
135+
#endif
118136

119137
lldb::SBTypeCategory &
120138
operator = (const lldb::SBTypeCategory &rhs);

‎include/lldb/API/SBTypeSummary.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
#include "lldb/API/SBDefines.h"
1414

15+
#ifndef LLDB_DISABLE_PYTHON
16+
1517
namespace lldb {
1618

1719
class SBTypeSummary
@@ -108,4 +110,6 @@ namespace lldb {
108110

109111
} // namespace lldb
110112

113+
#endif // LLDB_DISABLE_PYTHON
114+
111115
#endif // LLDB_SBTypeSummary_h_

‎include/lldb/API/SBTypeSynthetic.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
#include "lldb/API/SBDefines.h"
1414

15+
#ifndef LLDB_DISABLE_PYTHON
16+
1517
namespace lldb {
1618

1719
class SBTypeSynthetic
@@ -95,4 +97,6 @@ namespace lldb {
9597

9698
} // namespace lldb
9799

100+
#endif // LLDB_DISABLE_PYTHON
101+
98102
#endif // LLDB_SBTypeSynthetic_h_

‎include/lldb/API/SBValue.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,18 @@ class SBValue
104104
lldb::SBTypeFormat
105105
GetTypeFormat ();
106106

107+
#ifndef LLDB_DISABLE_PYTHON
107108
lldb::SBTypeSummary
108109
GetTypeSummary ();
109-
110+
#endif
111+
110112
lldb::SBTypeFilter
111113
GetTypeFilter ();
112114

115+
#ifndef LLDB_DISABLE_PYTHON
113116
lldb::SBTypeSynthetic
114117
GetTypeSynthetic ();
118+
#endif
115119

116120
lldb::SBValue
117121
GetChildAtIndex (uint32_t idx);

‎include/lldb/Core/FormatManager.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,9 +692,10 @@ class FormatManager : public IFormatChangeListener
692692
void
693693
LoadSystemFormatters();
694694

695+
#ifndef LLDB_DISABLE_PYTHON
695696
void
696697
LoadObjCFormatters();
697-
698+
#endif
698699
};
699700

700701
} // namespace lldb_private

‎include/lldb/lldb-forward.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,9 @@ namespace lldb {
291291
typedef std::tr1::shared_ptr<lldb_private::SyntheticChildren> SyntheticChildrenSP;
292292
typedef std::tr1::shared_ptr<lldb_private::SyntheticChildrenFrontEnd> SyntheticChildrenFrontEndSP;
293293
typedef std::tr1::shared_ptr<lldb_private::TypeFilterImpl> TypeFilterImplSP;
294+
#ifndef LLDB_DISABLE_PYTHON
294295
typedef std::tr1::shared_ptr<lldb_private::TypeSyntheticImpl> TypeSyntheticImplSP;
296+
#endif
295297
typedef std::tr1::shared_ptr<lldb_private::Target> TargetSP;
296298
typedef std::tr1::weak_ptr<lldb_private::Target> TargetWP;
297299
typedef std::tr1::shared_ptr<lldb_private::Thread> ThreadSP;

‎lldb.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3133,7 +3133,7 @@
31333133
);
31343134
runOnlyForDeploymentPostprocessing = 1;
31353135
shellPath = /bin/sh;
3136-
shellScript = "xcode_dir=\"${DSTROOT}/Applications/Xcode.app/Contents/Developer/usr/bin\"\n\nif [ ! -d \"${xcode_dir}\" ]; then\n mkdir -p \"${xcode_dir}\"\nfi\n\nditto \"$TARGET_BUILD_DIR/$EXECUTABLE_PATH\" \"${xcode_dir}\"\nstrip -S \"${xcode_dir}/${EXECUTABLE_PATH}\"";
3136+
shellScript = "xcode_dir=\"${DSTROOT}/Applications/Xcode.app/Contents/Developer/usr/bin\"; if echo \"$SDKROOT\" | grep -vi iphoneos >/dev/null; then [ ! -d \"${xcode_dir}\" ] && mkdir -p \"${xcode_dir}\"; ditto \"$TARGET_BUILD_DIR/$EXECUTABLE_PATH\" \"${xcode_dir}\"; strip -S \"${xcode_dir}/${EXECUTABLE_PATH}\"; fi";
31373137
};
31383138
2613F2F2146880EE00BFE551 /* Copy to Xcode.app */ = {
31393139
isa = PBXShellScriptBuildPhase;
@@ -3147,7 +3147,7 @@
31473147
);
31483148
runOnlyForDeploymentPostprocessing = 1;
31493149
shellPath = "/bin/sh -x";
3150-
shellScript = "xcode_dir=\"${DSTROOT}/Applications/Xcode.app/Contents/SharedFrameworks\"\n\nif [ ! -d \"${xcode_dir}\" ]; then\n mkdir -p \"${xcode_dir}\"\nfi\n\nditto \"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\" \"${xcode_dir}/${WRAPPER_NAME}\"\nstrip -S \"${xcode_dir}/${EXECUTABLE_PATH}\"";
3150+
shellScript = "xcode_dir=\"${DSTROOT}/Applications/Xcode.app/Contents/SharedFrameworks\"; if echo \"$SDKROOT\" | grep -vi iphoneos >/dev/null; then [ ! -d \"${xcode_dir}\" ] && mkdir -p \"${xcode_dir}\"; ditto \"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\" \"${xcode_dir}/${WRAPPER_NAME}\"; strip -S \"${xcode_dir}/${EXECUTABLE_PATH}\"; fi";
31513151
};
31523152
261B5A7511C3FA6F00AABD0A /* Fixup Framework Headers */ = {
31533153
isa = PBXShellScriptBuildPhase;

‎scripts/Python/build-swig-Python.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ else
3333
Debug=0
3434
fi
3535

36+
# If this project is being built with LLDB_DISABLE_PYTHON defined,
37+
# don't bother generating Python swig bindings -- we don't have
38+
# Python available.
39+
40+
if echo $GCC_PREPROCESSOR_DEFINITIONS | grep LLDB_DISABLE_PYTHON
41+
then
42+
echo "" > "${swig_output_file}"
43+
exit 0
44+
fi
3645

3746
HEADER_FILES="${SRC_ROOT}/include/lldb/lldb.h"\
3847
" ${SRC_ROOT}/include/lldb/lldb-defines.h"\

‎source/API/SBDebugger.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,6 +1135,7 @@ SBDebugger::GetFormatForType (SBTypeNameSpecifier type_name)
11351135
return SBTypeFormat();
11361136
}
11371137

1138+
#ifndef LLDB_DISABLE_PYTHON
11381139
SBTypeSummary
11391140
SBDebugger::GetSummaryForType (SBTypeNameSpecifier type_name)
11401141
{
@@ -1158,6 +1159,7 @@ SBDebugger::GetSummaryForType (SBTypeNameSpecifier type_name)
11581159
}
11591160
return summary_chosen;
11601161
}
1162+
#endif // LLDB_DISABLE_PYTHON
11611163

11621164
SBTypeFilter
11631165
SBDebugger::GetFilterForType (SBTypeNameSpecifier type_name)
@@ -1183,6 +1185,7 @@ SBDebugger::GetFilterForType (SBTypeNameSpecifier type_name)
11831185
return filter_chosen;
11841186
}
11851187

1188+
#ifndef LLDB_DISABLE_PYTHON
11861189
SBTypeSynthetic
11871190
SBDebugger::GetSyntheticForType (SBTypeNameSpecifier type_name)
11881191
{
@@ -1206,6 +1209,7 @@ SBDebugger::GetSyntheticForType (SBTypeNameSpecifier type_name)
12061209
}
12071210
return synth_chosen;
12081211
}
1212+
#endif // LLDB_DISABLE_PYTHON
12091213

12101214
bool
12111215
SBDebugger::EnableLog (const char *channel, const char **categories)

‎source/API/SBFrame.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,8 @@ SBFrame::EvaluateExpression (const char *expr, lldb::DynamicValueType fetch_dyna
979979
expr_result.SetSP(expr_value_sp);
980980
Host::SetCrashDescription (NULL);
981981
}
982-
982+
983+
#ifndef LLDB_DISABLE_PYTHON
983984
if (expr_log)
984985
expr_log->Printf("** [SBFrame::EvaluateExpression] Expression result is %s, summary %s **",
985986
expr_result.GetValue(),
@@ -991,6 +992,7 @@ SBFrame::EvaluateExpression (const char *expr, lldb::DynamicValueType fetch_dyna
991992
expr,
992993
expr_value_sp.get(),
993994
exe_results);
995+
#endif
994996

995997
return expr_result;
996998
}

‎source/API/SBTypeCategory.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,15 @@ SBTypeCategory::GetNumFilters ()
104104
return m_opaque_sp->GetFilterNavigator()->GetCount() + m_opaque_sp->GetRegexFilterNavigator()->GetCount();
105105
}
106106

107+
#ifndef LLDB_DISABLE_PYTHON
107108
uint32_t
108109
SBTypeCategory::GetNumSynthetics ()
109110
{
110111
if (!IsValid())
111112
return 0;
112113
return m_opaque_sp->GetSyntheticNavigator()->GetCount() + m_opaque_sp->GetRegexSyntheticNavigator()->GetCount();
113114
}
115+
#endif
114116

115117
lldb::SBTypeNameSpecifier
116118
SBTypeCategory::GetTypeNameSpecifierForFilterAtIndex (uint32_t index)
@@ -136,13 +138,15 @@ SBTypeCategory::GetTypeNameSpecifierForSummaryAtIndex (uint32_t index)
136138
return SBTypeNameSpecifier(m_opaque_sp->GetTypeNameSpecifierForSummaryAtIndex(index));
137139
}
138140

141+
#ifndef LLDB_DISABLE_PYTHON
139142
lldb::SBTypeNameSpecifier
140143
SBTypeCategory::GetTypeNameSpecifierForSyntheticAtIndex (uint32_t index)
141144
{
142145
if (!IsValid())
143146
return SBTypeNameSpecifier();
144147
return SBTypeNameSpecifier(m_opaque_sp->GetTypeNameSpecifierForSyntheticAtIndex(index));
145148
}
149+
#endif
146150

147151
SBTypeFilter
148152
SBTypeCategory::GetFilterForType (SBTypeNameSpecifier spec)
@@ -183,6 +187,7 @@ SBTypeCategory::GetFormatForType (SBTypeNameSpecifier spec)
183187
return SBTypeFormat(DataVisualization::ValueFormats::GetFormat(ConstString(spec.GetName())));
184188
}
185189

190+
#ifndef LLDB_DISABLE_PYTHON
186191
SBTypeSummary
187192
SBTypeCategory::GetSummaryForType (SBTypeNameSpecifier spec)
188193
{
@@ -204,7 +209,9 @@ SBTypeCategory::GetSummaryForType (SBTypeNameSpecifier spec)
204209

205210
return lldb::SBTypeSummary(summary_sp);
206211
}
212+
#endif // LLDB_DISABLE_PYTHON
207213

214+
#ifndef LLDB_DISABLE_PYTHON
208215
SBTypeSynthetic
209216
SBTypeCategory::GetSyntheticForType (SBTypeNameSpecifier spec)
210217
{
@@ -228,7 +235,9 @@ SBTypeCategory::GetSyntheticForType (SBTypeNameSpecifier spec)
228235

229236
return lldb::SBTypeSynthetic(synth_sp);
230237
}
238+
#endif
231239

240+
#ifndef LLDB_DISABLE_PYTHON
232241
SBTypeFilter
233242
SBTypeCategory::GetFilterAtIndex (uint32_t index)
234243
{
@@ -243,6 +252,7 @@ SBTypeCategory::GetFilterAtIndex (uint32_t index)
243252

244253
return lldb::SBTypeFilter(filter_sp);
245254
}
255+
#endif
246256

247257
SBTypeFormat
248258
SBTypeCategory::GetFormatAtIndex (uint32_t index)
@@ -252,14 +262,17 @@ SBTypeCategory::GetFormatAtIndex (uint32_t index)
252262
return SBTypeFormat(DataVisualization::ValueFormats::GetFormatAtIndex((index)));
253263
}
254264

265+
#ifndef LLDB_DISABLE_PYTHON
255266
SBTypeSummary
256267
SBTypeCategory::GetSummaryAtIndex (uint32_t index)
257268
{
258269
if (!IsValid())
259270
return SBTypeSummary();
260271
return SBTypeSummary(m_opaque_sp->GetSummaryAtIndex((index)));
261272
}
273+
#endif
262274

275+
#ifndef LLDB_DISABLE_PYTHON
263276
SBTypeSynthetic
264277
SBTypeCategory::GetSyntheticAtIndex (uint32_t index)
265278
{
@@ -274,6 +287,7 @@ SBTypeCategory::GetSyntheticAtIndex (uint32_t index)
274287

275288
return lldb::SBTypeSynthetic(synth_sp);
276289
}
290+
#endif
277291

278292
bool
279293
SBTypeCategory::AddTypeFormat (SBTypeNameSpecifier type_name,
@@ -311,6 +325,7 @@ SBTypeCategory::DeleteTypeFormat (SBTypeNameSpecifier type_name)
311325
return DataVisualization::ValueFormats::Delete(ConstString(type_name.GetName()));
312326
}
313327

328+
#ifndef LLDB_DISABLE_PYTHON
314329
bool
315330
SBTypeCategory::AddTypeSummary (SBTypeNameSpecifier type_name,
316331
SBTypeSummary summary)
@@ -365,6 +380,7 @@ SBTypeCategory::AddTypeSummary (SBTypeNameSpecifier type_name,
365380

366381
return true;
367382
}
383+
#endif
368384

369385
bool
370386
SBTypeCategory::DeleteTypeSummary (SBTypeNameSpecifier type_name)
@@ -417,6 +433,7 @@ SBTypeCategory::DeleteTypeFilter (SBTypeNameSpecifier type_name)
417433
return m_opaque_sp->GetFilterNavigator()->Delete(ConstString(type_name.GetName()));
418434
}
419435

436+
#ifndef LLDB_DISABLE_PYTHON
420437
bool
421438
SBTypeCategory::AddTypeSynthetic (SBTypeNameSpecifier type_name,
422439
SBTypeSynthetic synth)
@@ -486,6 +503,7 @@ SBTypeCategory::DeleteTypeSynthetic (SBTypeNameSpecifier type_name)
486503
else
487504
return m_opaque_sp->GetSyntheticNavigator()->Delete(ConstString(type_name.GetName()));
488505
}
506+
#endif // LLDB_DISABLE_PYTHON
489507

490508
bool
491509
SBTypeCategory::GetDescription (lldb::SBStream &description,

‎source/API/SBTypeSummary.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
using namespace lldb;
1717
using namespace lldb_private;
1818

19+
#ifndef LLDB_DISABLE_PYTHON
20+
1921
SBTypeSummary::SBTypeSummary() :
2022
m_opaque_sp()
2123
{
@@ -296,3 +298,5 @@ SBTypeSummary::ChangeSummaryType (bool want_script)
296298

297299
return true;
298300
}
301+
302+
#endif // LLDB_DISABLE_PYTHON

‎source/API/SBTypeSynthetic.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
using namespace lldb;
1717
using namespace lldb_private;
1818

19+
#ifndef LLDB_DISABLE_PYTHON
20+
1921
SBTypeSynthetic::SBTypeSynthetic() :
2022
m_opaque_sp()
2123
{
@@ -201,3 +203,5 @@ SBTypeSynthetic::CopyOnWrite_Impl()
201203

202204
return true;
203205
}
206+
207+
#endif // LLDB_DISABLE_PYTHON

‎source/API/SBValue.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ SBValue::GetValueDidChange ()
310310
return result;
311311
}
312312

313+
#ifndef LLDB_DISABLE_PYTHON
313314
const char *
314315
SBValue::GetSummary ()
315316
{
@@ -334,6 +335,7 @@ SBValue::GetSummary ()
334335
}
335336
return cstr;
336337
}
338+
#endif // LLDB_DISABLE_PYTHON
337339

338340
const char *
339341
SBValue::GetLocation ()
@@ -399,6 +401,7 @@ SBValue::GetTypeFormat ()
399401
return format;
400402
}
401403

404+
#ifndef LLDB_DISABLE_PYTHON
402405
lldb::SBTypeSummary
403406
SBValue::GetTypeSummary ()
404407
{
@@ -420,6 +423,7 @@ SBValue::GetTypeSummary ()
420423
}
421424
return summary;
422425
}
426+
#endif // LLDB_DISABLE_PYTHON
423427

424428
lldb::SBTypeFilter
425429
SBValue::GetTypeFilter ()
@@ -447,6 +451,7 @@ SBValue::GetTypeFilter ()
447451
return filter;
448452
}
449453

454+
#ifndef LLDB_DISABLE_PYTHON
450455
lldb::SBTypeSynthetic
451456
SBValue::GetTypeSynthetic ()
452457
{
@@ -472,6 +477,7 @@ SBValue::GetTypeSynthetic ()
472477
}
473478
return synthetic;
474479
}
480+
#endif
475481

476482
lldb::SBValue
477483
SBValue::CreateChildAtOffset (const char *name, uint32_t offset, SBType type)

‎source/Core/FormatManager.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,9 @@ FormatManager::FormatManager() :
589589

590590
LoadSystemFormatters();
591591
LoadSTLFormatters();
592+
#ifndef LLDB_DISABLE_PYTHON
592593
LoadObjCFormatters();
594+
#endif
593595

594596
EnableCategory(m_objc_category_name,CategoryMap::Last);
595597
//EnableCategory(m_corefoundation_category_name,CategoryMap::Last);
@@ -684,6 +686,7 @@ AddSummary(TypeCategoryImpl::SharedPointer category_sp,
684686
summary_sp);
685687
}
686688

689+
#ifndef LLDB_DISABLE_PYTHON
687690
void
688691
FormatManager::LoadObjCFormatters()
689692
{
@@ -850,3 +853,4 @@ FormatManager::LoadObjCFormatters()
850853
ConstString("vBool32"),
851854
vector_flags);
852855
}
856+
#endif // LLDB_DISABLE_PYTHON

0 commit comments

Comments
 (0)
This repository has been archived.