-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node 22.x fails to build with pointer compression #54531
Comments
CC @codebytere |
(I've removed the v22 label after adding it because this probably affects main as well, if it's reproducible) |
@nodejs/build I'm also experiencing an error against the
|
I can confirm |
I am a total newbie of V8 internals, but it appears that V8::InitializeSandbox was deprecated already 2022 because it became part of V8:Initialize (https://chromium.googlesource.com/v8/v8/+/f3737bbb12351042cf81198202ba07288b99f597), and no longer appears in V8 main https://chromium.googlesource.com/v8/v8/+/refs/heads/main/src/init/v8.cc). Perhaps the initialize call at node/test/cctest/node_test_fixture.cc Line 24 in 18acff0
|
The built is succeeded, when I revert the PR #53884 for file "common.gypi" as - o['variables']['v8_enable_sandbox'] = 1 if options.enable_pointer_compression else 0 I guess that #53884 causes the problem, but I could not understand why #53884 was needed, thus, it is difficult for me to create a PR about this. |
Version
No response
Platform
Subsystem
No response
What steps will reproduce the bug?
Checkout the
v22.x
branch, configure with--experimental-enable-pointer-compression
and build it.How often does it reproduce? Is there a required condition?
The build fails consistently.
What is the expected behavior? Why is that the expected behavior?
The build should succeed.
What do you see instead?
Additional information
The last known good version to build with pointer compression is
v22.5.1
. I've bisected on thev22.x
branch and the first bad commit is ee97c04.The text was updated successfully, but these errors were encountered: