[llvm] r316414 - [Modules] Add module for Config/llvm-config.h

Bruno Cardoso Lopes via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 23 23:18:52 PDT 2017


Author: bruno
Date: Mon Oct 23 23:18:52 2017
New Revision: 316414

URL: http://llvm.org/viewvc/llvm-project?rev=316414&view=rev
Log:
[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

Modified:
    llvm/trunk/include/llvm/module.modulemap.build

Modified: llvm/trunk/include/llvm/module.modulemap.build
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap.build?rev=316414&r1=316413&r2=316414&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap.build (original)
+++ llvm/trunk/include/llvm/module.modulemap.build Mon Oct 23 23:18:52 2017
@@ -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 *
+}




More information about the llvm-commits mailing list