Skip to content

Commit ad91055

Browse files
authored
Merge pull request #31 from nightpool/v17.3.1
Update to node v17.3.1
2 parents c77e1c8 + 1e7905f commit ad91055

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

lib/libv8/node/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Libv8; end
22

33
module Libv8::Node
4-
VERSION = '16.10.0.0'.freeze
5-
NODE_VERSION = '16.10.0'.freeze
6-
LIBV8_VERSION = '9.3.345.19'.freeze # from v8/include/v8-version.h
4+
VERSION = '17.3.1.0'.freeze
5+
NODE_VERSION = '17.3.1'.freeze
6+
LIBV8_VERSION = '9.6.180.15'.freeze # from v8/include/v8-version.h
77
end

libexec/build-monolith

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,13 @@ platform=$(uname)
2121
rm -f "${LIBV8_MONOLITH}"
2222
case "${platform}" in
2323
"SunOS")
24-
/usr/xpg4/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
25-
ar cqS "${LIBV8_MONOLITH}" "${obj}"
26-
done
27-
ranlib "${LIBV8_MONOLITH}"
24+
/usr/xpg4/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | xargs ar cq "${LIBV8_MONOLITH}"
2825
;;
2926
"Darwin")
30-
/usr/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
31-
/usr/bin/ar -cqS "${LIBV8_MONOLITH}" "${obj}"
32-
done
33-
/usr/bin/ranlib "${LIBV8_MONOLITH}"
27+
/usr/bin/find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | xargs /usr/bin/ar -cq "${LIBV8_MONOLITH}"
3428
;;
3529
"Linux")
36-
find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | while read -r obj; do
37-
ar -cq "${LIBV8_MONOLITH}" "${obj}"
38-
done
30+
find . -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | xargs ar -cq "${LIBV8_MONOLITH}"
3931
;;
4032
*)
4133
echo "Unsupported platform: ${platform}"

sums/v17.3.1.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
34ed7eeb1fd088c59e2719c229dc9587c9f106b45329798ca3945c386ac824ed

0 commit comments

Comments
 (0)