[llvm] r215139 - [modules] Update module map workaround to cope with the problematic file having
Richard Smith
richard-llvm at metafoo.co.uk
Thu Aug 7 13:27:08 PDT 2014
Author: rsmith
Date: Thu Aug 7 15:27:08 2014
New Revision: 215139
URL: http://llvm.org/viewvc/llvm-project?rev=215139&view=rev
Log:
[modules] Update module map workaround to cope with the problematic file having
been relocated.
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=215139&r1=215138&r2=215139&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Thu Aug 7 15:27:08 2014
@@ -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 * } }
More information about the llvm-commits
mailing list