2009-04-27 13:50:42 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2011-09-26 14:09:30 +00:00
|
|
|
# find the name of the log file to process, it must not start with a dash.
|
|
|
|
log_file="v8.log"
|
|
|
|
for arg in "$@"
|
|
|
|
do
|
|
|
|
if ! expr "X${arg}" : "^X-" > /dev/null; then
|
|
|
|
log_file=${arg}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2009-06-05 15:49:37 +00:00
|
|
|
tools_path=`cd $(dirname "$0");pwd`
|
2009-06-20 12:54:02 +00:00
|
|
|
if [ ! "$D8_PATH" ]; then
|
|
|
|
d8_public=`which d8`
|
2012-07-26 10:03:30 +00:00
|
|
|
if [ -x "$d8_public" ]; then D8_PATH=$(dirname "$d8_public"); fi
|
2009-06-20 12:54:02 +00:00
|
|
|
fi
|
2012-07-26 10:03:30 +00:00
|
|
|
[ -n "$D8_PATH" ] || D8_PATH=$tools_path/..
|
2009-06-05 15:49:37 +00:00
|
|
|
d8_exec=$D8_PATH/d8
|
2009-04-27 13:50:42 +00:00
|
|
|
|
2012-07-26 10:03:30 +00:00
|
|
|
if [ ! -x "$d8_exec" ]; then
|
2011-09-26 14:09:30 +00:00
|
|
|
D8_PATH=`pwd`/out/native
|
|
|
|
d8_exec=$D8_PATH/d8
|
2009-06-20 12:54:02 +00:00
|
|
|
fi
|
2009-04-27 13:50:42 +00:00
|
|
|
|
2012-07-26 10:03:30 +00:00
|
|
|
if [ ! -x "$d8_exec" ]; then
|
2011-09-26 14:09:30 +00:00
|
|
|
d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'`
|
|
|
|
fi
|
2011-03-16 11:15:43 +00:00
|
|
|
|
2012-07-26 10:03:30 +00:00
|
|
|
if [ ! -x "$d8_exec" ]; then
|
2018-11-06 11:38:49 +00:00
|
|
|
echo "d8 shell not found in $D8_PATH" >&2
|
|
|
|
echo "Please provide path to d8 as env var in D8_PATH" >&2
|
2011-09-26 14:09:30 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2011-03-16 11:15:43 +00:00
|
|
|
|
2009-05-20 09:37:36 +00:00
|
|
|
# nm spits out 'no symbols found' messages to stderr.
|
2017-07-21 18:16:20 +00:00
|
|
|
cat $log_file | $d8_exec --enable-os-system \
|
2020-11-03 09:17:12 +00:00
|
|
|
--module $tools_path/tickprocessor-driver.mjs -- $@
|