Skip to content

Commit 1389516

Browse files
committed
Roll back ranlib on Linux
THis seemed to remove R symbols in nm -C
1 parent 9a3dd78 commit 1389516

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build-monolith

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ case "${platform}" in
3131
;;
3232
"Linux")
3333
find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
34-
ar -cqS "${LIBV8_MONOLITH}" "${obj}"
34+
ar -cq "${LIBV8_MONOLITH}" "${obj}"
3535
done
36-
ranlib "${LIBV8_MONOLITH}"
3736
;;
3837
*)
3938
echo "Unsupported platform: ${platform}"

0 commit comments

Comments
 (0)