From 4d593efd7f930c42be8553a5ba347e2d87503ad4 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 29 Mar 2021 08:55:58 -0700 Subject: [PATCH] [lldb] Include llvm-config.h instead of config.h This distinction doesn't matter for an in-tree build, but when building against an installed llvm, only the former is present. This should fix the LLDB Standalone bot: http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-standalone/ --- lldb/source/Utility/LLDBAssert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Utility/LLDBAssert.cpp b/lldb/source/Utility/LLDBAssert.cpp index 532b56b..a8d8ef6 100644 --- a/lldb/source/Utility/LLDBAssert.cpp +++ b/lldb/source/Utility/LLDBAssert.cpp @@ -7,7 +7,7 @@ //===----------------------------------------------------------------------===// #include "lldb/Utility/LLDBAssert.h" -#include "llvm/Config/config.h" +#include "llvm/Config/llvm-config.h" #include "llvm/Support/Format.h" #include "llvm/Support/Signals.h" #include "llvm/Support/raw_ostream.h" -- 2.7.4