[llvm] r355646 - Work around a module build error on the LLDB incremental green dragon bot.
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 7 14:25:26 PST 2019
Author: adrian
Date: Thu Mar 7 14:25:26 2019
New Revision: 355646
URL: http://llvm.org/viewvc/llvm-project?rev=355646&view=rev
Log:
Work around a module build error on the LLDB incremental green dragon bot.
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=355646&r1=355645&r2=355646&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Thu Mar 7 14:25:26 2019
@@ -353,6 +353,10 @@ module LLVM_Utils {
exclude header "Support/PluginLoader.h"
exclude header "Support/Solaris/sys/regset.h"
+ // FIXME: The function bodies in this header pull in
+ // unwanted dependencies that cause linker errors.
+ exclude header "Support/GenericDomTreeConstruction.h"
+
// These are intended for textual inclusion.
textual header "Support/ARMTargetParser.def"
textual header "Support/AArch64TargetParser.def"
More information about the llvm-commits
mailing list