[Lldb-commits] [lldb] r310270 - Fixed build failure for revision r310261
Abhishek Aggarwal via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 7 10:15:26 PDT 2017
Author: abhishek
Date: Mon Aug 7 10:15:26 2017
New Revision: 310270
URL: http://llvm.org/viewvc/llvm-project?rev=310270&view=rev
Log:
Fixed build failure for revision r310261
-- Was failing for Linux
Modified:
lldb/trunk/tools/intel-features/cli-wrapper.cpp
Modified: lldb/trunk/tools/intel-features/cli-wrapper.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/intel-features/cli-wrapper.cpp?rev=310270&r1=310269&r2=310270&view=diff
==============================================================================
--- lldb/trunk/tools/intel-features/cli-wrapper.cpp (original)
+++ lldb/trunk/tools/intel-features/cli-wrapper.cpp Mon Aug 7 10:15:26 2017
@@ -15,8 +15,14 @@
//
//===----------------------------------------------------------------------===//
+#ifdef BUILD_INTEL_MPX
#include "intel-mpx/cli-wrapper-mpxtable.h"
+#endif
+
+#ifdef BUILD_INTEL_PT
#include "intel-pt/cli-wrapper-pt.h"
+#endif
+
#include "lldb/API/SBDebugger.h"
namespace lldb {
More information about the lldb-commits
mailing list