[lldb] Include llvm-config.h instead of config.h
authorJonas Devlieghere <jonas@devlieghere.com>
Mon, 29 Mar 2021 15:55:58 +0000 (08:55 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Mon, 29 Mar 2021 15:58:51 +0000 (08:58 -0700)
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

index 532b56b6f59e3f7545d9eacc303be8bceaa51369..a8d8ef65a94557a9817e5dd87368e2dfd42d6597 100644 (file)
@@ -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"