[llvm] r306061 - Fix modular build
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 22 14:28:48 PDT 2017
Author: kamil
Date: Thu Jun 22 16:28:48 2017
New Revision: 306061
URL: http://llvm.org/viewvc/llvm-project?rev=306061&view=rev
Log:
Fix modular build
Exclude header Support/Solaris/sys/regset.h.
Modified:
llvm/trunk/include/llvm/module.modulemap
Modified: llvm/trunk/include/llvm/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap?rev=306061&r1=306060&r2=306061&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Thu Jun 22 16:28:48 2017
@@ -275,8 +275,9 @@ module LLVM_Utils {
umbrella "Support"
module * { export * }
- // Exclude this; it's fundamentally non-modular.
+ // Exclude these; they are fundamentally non-modular.
exclude header "Support/PluginLoader.h"
+ exclude header "Support/Solaris/sys/regset.h"
// These are intended for textual inclusion.
textual header "Support/ARMTargetParser.def"
More information about the llvm-commits
mailing list