We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289fbed commit 320e8dfCopy full SHA for 320e8df
build-monolith
@@ -30,11 +30,8 @@ case "${platform}" in
30
/usr/bin/ranlib "${LIBV8_MONOLITH}"
31
;;
32
"Linux")
33
- find . -path './tools/v8/gypfiles/*.a' | while read -r lib; do
34
- ar -t "${lib}" | xargs ar -cqS "${LIBV8_MONOLITH}"
35
- done
36
- find . -path './tools/icu/*.a' | while read -r lib; do
37
+ find . -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
+ ar -cqS "${LIBV8_MONOLITH}" "${obj}"
38
done
39
ranlib "${LIBV8_MONOLITH}"
40
0 commit comments