fix(v8): use Python-safe 11.9.9 prebuilts - #72
Merged
Conversation
Promote the prepared 11.9.9 version updates across Cargo, CMake and native test consumers. Link libatomic on Linux ARM64 and retain the required system libraries when CMake consumes static V8 archives. Integrated and validated by Codex, an OpenAI coding agent, at the repository owner's request.
This was referenced Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Use V8 custom build 11.9.9 across Cargo, CMake, Makefile cache discovery, and native test builds.
This carries the library-safe TLS fixes for embedding V8 in Python extensions and the Linux ARM64 manylinux 2.28 compatibility fixes. The ARM64 archive also needs
libatomic; link it in Cargo and CMake, keeping explicit CMake extra-library overrides intact.These changes promote the existing local 11.9.9/linker update onto current main, preserving the already-merged C-character fixes.
Validation
aarch64,arm64, andx86_64, plus Darwin ARM64/x86_64; default linker dependencies and explicit overrides pass.ctypes.CDLL, and executes V8 JavaScript; all 93 native N-API tests pass. This used the already-verified googletest source because Ubuntu's stock CMake is older than the existing FetchContent download options.__isoc23_*imports; the archive does import__atomic_compare_exchange, confirming thelibatomicrequirement./proc-based worker-count test is Linux-only).Integrated and validated by Codex, an OpenAI coding agent, at the repository owner's request.