Skip to content

Commit 9959161

Browse files
committed
feat(v8): add llvm-libc to V8 deps
Keep only the folders that are needed at the moment Refs: https://chromium-review.googlesource.com/c/v8/v8/+/7828379
1 parent da35751 commit 9959161

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

lib/update-v8/constants.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ const highwayIgnore = `/third_party/highway/src/*
4747
const dragonboxIgnore = `/third_party/dragonbox/src/*
4848
!/third_party/dragonbox/src/include`;
4949

50+
const llvmLibcIgnore = `/third_party/llvm-libc/src/*
51+
!/third_party/llvm-libc/src/hdr
52+
!/third_party/llvm-libc/src/include
53+
!/third_party/llvm-libc/src/shared
54+
!/third_party/llvm-libc/src/src
55+
/third_party/llvm-libc/src/src/*
56+
!/third_party/llvm-libc/src/src/__support`;
57+
5058
export const v8Deps = [
5159
{
5260
name: 'trace_event',
@@ -146,4 +154,13 @@ export const v8Deps = [
146154
},
147155
since: 138
148156
},
157+
{
158+
name: 'llvm-libc',
159+
repo: 'third_party/llvm-libc/src',
160+
gitignore: {
161+
match: '/third_party/llvm-libc/src',
162+
replace: llvmLibcIgnore
163+
},
164+
since: 150
165+
},
149166
];

0 commit comments

Comments
 (0)