[clang] 4c418c1 - Try to fix build with modules enabled after D108422

Andrei Elovikov via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 24 10:18:32 PDT 2021


Author: Andrei Elovikov
Date: 2021-08-24T10:18:15-07:00
New Revision: 4c418c1bfbc544e24b9614efc3926fe2c6218b0c

URL: https://github.com/llvm/llvm-project/commit/4c418c1bfbc544e24b9614efc3926fe2c6218b0c
DIFF: https://github.com/llvm/llvm-project/commit/4c418c1bfbc544e24b9614efc3926fe2c6218b0c.diff

LOG: Try to fix build with modules enabled after D108422

D108422 removed Basic/X86Target.def but didn't delete the entry in
module.modulemap. Do it now. Hopefully it will fix the build.

Added: 
    

Modified: 
    clang/include/clang/module.modulemap

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/module.modulemap b/clang/include/clang/module.modulemap
index 33fcf9dc7576..e99b8d4f5c63 100644
--- a/clang/include/clang/module.modulemap
+++ b/clang/include/clang/module.modulemap
@@ -67,7 +67,6 @@ module Clang_Basic {
   textual header "Basic/Sanitizers.def"
   textual header "Basic/TargetCXXABI.def"
   textual header "Basic/TokenKinds.def"
-  textual header "Basic/X86Target.def"
 
   module * { export * }
 }


        


More information about the cfe-commits mailing list