Skip to content

Commit 3f03355

Browse files
committed
build: include missing V8 headers in distribution
Fixes: nodejs/Release#704 PR-URL: #40526 Fixes: #40529 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
1 parent 9125cfd commit 3f03355

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/install.py

+5
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,18 @@ def wanted_v8_headers(files_arg, dest):
176176
'deps/v8/include/libplatform/v8-tracing.h',
177177
'deps/v8/include/v8.h',
178178
'deps/v8/include/v8-array-buffer.h',
179+
'deps/v8/include/v8-callbacks.h',
179180
'deps/v8/include/v8-container.h',
180181
'deps/v8/include/v8-context.h',
181182
'deps/v8/include/v8-data.h',
182183
'deps/v8/include/v8-date.h',
183184
'deps/v8/include/v8-debug.h',
185+
'deps/v8/include/v8-embedder-heap.h',
184186
'deps/v8/include/v8-exception.h',
185187
'deps/v8/include/v8-extension.h',
186188
'deps/v8/include/v8-external.h',
189+
'deps/v8/include/v8-forward.h',
190+
'deps/v8/include/v8-function-callback.h',
187191
'deps/v8/include/v8-function.h',
188192
'deps/v8/include/v8-initialization.h',
189193
'deps/v8/include/v8-internal.h',
@@ -216,6 +220,7 @@ def wanted_v8_headers(files_arg, dest):
216220
'deps/v8/include/v8-value.h',
217221
'deps/v8/include/v8-version.h',
218222
'deps/v8/include/v8-wasm.h',
223+
'deps/v8/include/v8-weak-callback-info.h',
219224
'deps/v8/include/v8config.h',
220225
]
221226
files_arg = [name for name in files_arg if name in v8_headers]

0 commit comments

Comments
 (0)