[clang] 5313d68 - [clang] Fix clang module build by declaring new textual header (#155510)

via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 26 15:51:47 PDT 2025


Author: Steven Wu
Date: 2025-08-26T22:51:44Z
New Revision: 5313d6895cd1153109f35cfdb60fbb6348f68cb9

URL: https://github.com/llvm/llvm-project/commit/5313d6895cd1153109f35cfdb60fbb6348f68cb9
DIFF: https://github.com/llvm/llvm-project/commit/5313d6895cd1153109f35cfdb60fbb6348f68cb9.diff

LOG: [clang] Fix clang module build by declaring new textual header (#155510)

Add `clang/Basic/ABIVersions.def` introduced in #151995 to textual
header
to fix clang module build.

Added: 
    

Modified: 
    clang/include/module.modulemap

Removed: 
    


################################################################################
diff  --git a/clang/include/module.modulemap b/clang/include/module.modulemap
index 42ee34f294061..c5535262ae38c 100644
--- a/clang/include/module.modulemap
+++ b/clang/include/module.modulemap
@@ -37,6 +37,7 @@ module Clang_Basic {
   umbrella "clang/Basic"
 
   textual header "clang/Basic/AArch64ACLETypes.def"
+  textual header "clang/Basic/ABIVersions.def"
   textual header "clang/Basic/AMDGPUTypes.def"
   textual header "clang/Basic/BuiltinHeaders.def"
   textual header "clang/Basic/BuiltinsAArch64.def"


        


More information about the cfe-commits mailing list