mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
build: fix V8 build with pointer compression
Refs: https://github.com/nodejs/TSC/issues/790#issuecomment-893457655 PR-URL: https://github.com/nodejs/node/pull/39664 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Mary Marchini <oss@mmarchini.me>
This commit is contained in:
@@ -356,7 +356,10 @@
|
||||
],
|
||||
}],
|
||||
['v8_enable_pointer_compression == 1', {
|
||||
'defines': ['V8_COMPRESS_POINTERS'],
|
||||
'defines': [
|
||||
'V8_COMPRESS_POINTERS',
|
||||
'V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE',
|
||||
],
|
||||
}],
|
||||
['v8_enable_pointer_compression == 1 or v8_enable_31bit_smis_on_64bit_arch == 1', {
|
||||
'defines': ['V8_31BIT_SMIS_ON_64BIT_ARCH'],
|
||||
|
||||
@@ -261,7 +261,10 @@
|
||||
'defines': ['ENABLE_MINOR_MC',],
|
||||
}],
|
||||
['v8_enable_pointer_compression==1', {
|
||||
'defines': ['V8_COMPRESS_POINTERS',],
|
||||
'defines': [
|
||||
'V8_COMPRESS_POINTERS',
|
||||
'V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE',
|
||||
],
|
||||
}],
|
||||
['v8_enable_pointer_compression==1 or v8_enable_31bit_smis_on_64bit_arch==1', {
|
||||
'defines': ['V8_31BIT_SMIS_ON_64BIT_ARCH',],
|
||||
|
||||
Reference in New Issue
Block a user