[llvm] [z/OS] Add z/OS archive reading support (PR #187110)
Uyiosa Iyekekpolor via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 13 06:58:46 PDT 2026
================
@@ -1171,6 +1307,9 @@ Archive::symbol_iterator Archive::symbol_begin() const {
buf += ran_strx;
} else if (kind() == K_AIXBIG) {
buf = getStringTable().begin();
+ } else if (kind() == K_ZOS) {
+ uint32_t symbol_count = read32be(buf);
+ buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint64_t)));
----------------
uyoyo0 wrote:
Done, thanks
https://github.com/llvm/llvm-project/pull/187110
More information about the llvm-commits
mailing list