From: Ilya Biryukov Date: Fri, 17 Nov 2017 10:09:02 +0000 (+0000) Subject: Use llvm-config.h instead of config.h X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c15c4bdf65d9c0b60a786c8766c6ff69802294d;p=clang Use llvm-config.h instead of config.h To fix standalone builds broken by r318411 (config.h is private to llvm). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@318514 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/PrecompiledPreamble.cpp b/lib/Frontend/PrecompiledPreamble.cpp index bfd62b7db3..130b9045c8 100644 --- a/lib/Frontend/PrecompiledPreamble.cpp +++ b/lib/Frontend/PrecompiledPreamble.cpp @@ -24,7 +24,7 @@ #include "clang/Serialization/ASTWriter.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringSet.h" -#include "llvm/Config/config.h" +#include "llvm/Config/llvm-config.h" #include "llvm/Support/CrashRecoveryContext.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/Mutex.h"