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

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


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang

Author: Steven Wu (cachemeifyoucan)

<details>
<summary>Changes</summary>

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


---
Full diff: https://github.com/llvm/llvm-project/pull/155510.diff


1 Files Affected:

- (modified) clang/include/module.modulemap (+1) 


``````````diff
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"

``````````

</details>


https://github.com/llvm/llvm-project/pull/155510


More information about the cfe-commits mailing list