File tree Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Original file line number Diff line number Diff line change 11module Libv8 ; end
22
33module 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
77end
Original file line number Diff line number Diff line change @@ -21,21 +21,13 @@ platform=$(uname)
2121rm -f " ${LIBV8_MONOLITH} "
2222case " ${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} "
Original file line number Diff line number Diff line change 1+ 34ed7eeb1fd088c59e2719c229dc9587c9f106b45329798ca3945c386ac824ed
You can’t perform that action at this time.
0 commit comments