RFR: 8347755: Support static library in jmod

Henry Jen henryjen at openjdk.org
Tue Mar 4 03:01:44 UTC 2025


This PR add --static-libs option to the jmod tool, it's basically mirroring --libs option to support adding a new section of static archive into the jmod file under the new section `static-lib`.

The JMOD magic header contains a MAJOR and MINOR version, we bump up the MINOR version if the --static-libs option is specified; otherwise, keep the MINOR version as 1. This allow created JMOD file without the newly supported static-lib section to continue be consumed by earlier version of jmod tool.

Also fix the formatting for _hermetic_jdk_jimage_offset, which is a julong(uint64_t) as unsigned long long on MacOS, thus need to use %llu.

-------------

Commit messages:
 - Fix julong format on MacOS
 - Add --static-libs to jmod

Changes: https://git.openjdk.org/leyden/pull/46/files
  Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=46&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8347755
  Stats: 95 lines in 6 files changed: 79 ins; 0 del; 16 mod
  Patch: https://git.openjdk.org/leyden/pull/46.diff
  Fetch: git fetch https://git.openjdk.org/leyden.git pull/46/head:pull/46

PR: https://git.openjdk.org/leyden/pull/46


More information about the leyden-dev mailing list