From d107b67e150d25020ae30f5a0675b3fb7299fe40 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 7 Aug 2014 20:27:08 +0000 Subject: [PATCH] [modules] Update module map workaround to cope with the problematic file having been relocated. llvm-svn: 215139 --- include/llvm/module.modulemap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/module.modulemap b/include/llvm/module.modulemap index eb9a698a339..4108c2e7e5f 100644 --- a/include/llvm/module.modulemap +++ b/include/llvm/module.modulemap @@ -109,7 +109,7 @@ module LLVM_MC { module * { export * } // FIXME: Excluded due to mislayering. - exclude header "MC/MCObjectSymbolizer.h" + exclude header "MC/MCAnalysis/MCObjectSymbolizer.h" // Exclude this; it's fundamentally non-modular. exclude header "MC/MCTargetOptionsCommandFlags.h" @@ -120,7 +120,7 @@ module LLVM_Object { umbrella "Object" module * { export * } - module LLVM_MC_MCObjectSymbolizer { header "MC/MCObjectSymbolizer.h" export * } + module LLVM_MC_MCAnalysis_MCObjectSymbolizer { header "MC/MCAnalysis/MCObjectSymbolizer.h" export * } } module LLVM_Option { requires cplusplus umbrella "Option" module * { export * } }