From: Bruno Cardoso Lopes Date: Tue, 24 Oct 2017 06:18:52 +0000 (+0000) Subject: [Modules] Add module for Config/llvm-config.h X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce910e5be40b18d37d3932ed59e2cb0e5e472b14;p=llvm [Modules] Add module for Config/llvm-config.h Besides all the goodness from modularizing a header, this is necessary to compile ToT with modules with the clang host compiler from Xcode 9 in macOS 10.13, which our bots don't use yet. rdar://problem/35038151 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316414 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/module.modulemap.build b/include/llvm/module.modulemap.build index 0f6f82af6e1..162a262a00a 100644 --- a/include/llvm/module.modulemap.build +++ b/include/llvm/module.modulemap.build @@ -7,3 +7,7 @@ module LLVM_Config_ABI_Breaking { header "Config/abi-breaking.h" export * } +module LLVM_Config_Config { + header "Config/llvm-config.h" + export * +}