Skip to content

Commit 235edb9

Browse files
committed
Add torque objects for consistency with .a files
1 parent e385604 commit 235edb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-monolith

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ platform=$(uname)
1818
rm -f "${LIBV8_MONOLITH}"
1919
case "${platform}" in
2020
"SunOS")
21-
/usr/xpg4/bin/find . -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
21+
/usr/xpg4/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
2222
ar cqS "${LIBV8_MONOLITH}" "${obj}"
2323
done
2424
ranlib "${LIBV8_MONOLITH}"
2525
;;
2626
"Darwin")
27-
/usr/bin/find . -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
27+
/usr/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
2828
/usr/bin/ar -cqS "${LIBV8_MONOLITH}" "${obj}"
2929
done
3030
/usr/bin/ranlib "${LIBV8_MONOLITH}"
3131
;;
3232
"Linux")
33-
find . -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
33+
find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
3434
ar -cqS "${LIBV8_MONOLITH}" "${obj}"
3535
done
3636
ranlib "${LIBV8_MONOLITH}"

0 commit comments

Comments
 (0)