OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 tools_path=`cd $(dirname "$0");pwd` | 3 tools_path=`cd $(dirname "$0");pwd` |
| 4 if [ ! "$D8_PATH" ]; then |
| 5 d8_public=`which d8` |
| 6 if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi |
| 7 fi |
4 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. | 8 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. |
5 d8_exec=$D8_PATH/d8 | 9 d8_exec=$D8_PATH/d8 |
6 | 10 |
7 # compile d8 if it doesn't exist, assuming this script | 11 # compile d8 if it doesn't exist, assuming this script |
8 # resides in the repository. | 12 # resides in the repository. |
9 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 | 13 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 |
10 | 14 |
11 # nm spits out 'no symbols found' messages to stderr. | 15 # nm spits out 'no symbols found' messages to stderr. |
12 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ | 16 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ |
13 $tools_path/csvparser.js $tools_path/consarray.js \ | 17 $tools_path/csvparser.js $tools_path/consarray.js \ |
14 $tools_path/profile.js $tools_path/profile_view.js \ | 18 $tools_path/profile.js $tools_path/profile_view.js \ |
15 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null | 19 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null |
OLD | NEW |