From cf4a315f0e0dad7ce41bfb7503aae0f8eb224d72 Mon Sep 17 00:00:00 2001 From: patrickm68 Date: Tue, 22 Nov 2022 22:49:53 +0800 Subject: [PATCH] fix(v8): add ittapi as V8 dependency (#552) Add ittapi to the list of V8 dependencies, which is used by VTune JIT profiling. Refs: https://github.com/nodejs/node/pull/45248 --- lib/update-v8/constants.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/update-v8/constants.js b/lib/update-v8/constants.js index 6d46541..d82c0ee 100644 --- a/lib/update-v8/constants.js +++ b/lib/update-v8/constants.js @@ -76,5 +76,11 @@ export const v8Deps = [ repo: 'third_party/zlib', gitignore: zlibIgnore, since: 80 + }, + { + name: 'ittapi', + repo: 'third_party/ittapi', + gitignore: '!/third_party/ittapi', + since: 81 } ];