Version 1.2.5.

Fixed bug in initial boundary check for Boyer-Moore text search (issue 349).

Fixed compilation issues with MinGW and gcc 4.3+ and added support for armv7 and cortex-a8 architectures.  Patches by Lei Zhang and Craig Schlenter.

Added a script cache to the debugger.

Optimized compilation performance by improving internal data structures and avoiding expensive property load optimizations for code that's infrequently executed.

Exposed the calling JavaScript context through the static API function Context::GetCalling().


git-svn-id: http://v8.googlecode.com/svn/trunk@2050 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/tools/linux-tick-processor b/tools/linux-tick-processor
index 0ad295f..e2f38b1 100644
--- a/tools/linux-tick-processor
+++ b/tools/linux-tick-processor
@@ -1,16 +1,16 @@
 #!/bin/sh
 
 tools_dir=$(dirname "$0")
+d8_exec=$tools_dir/../d8
 
-if [ "$1" != "--no-build" ]
+# compile d8 if it doesn't exist.
+if [ ! -x $d8_exec ]
 then
   scons -C $tools_dir/.. d8
-else
-  shift
 fi
 
-# nm spits out 'no symbols found' messages on stderr
-$tools_dir/../d8 $tools_dir/splaytree.js $tools_dir/codemap.js \
+# nm spits out 'no symbols found' messages to stderr.
+$d8_exec $tools_dir/splaytree.js $tools_dir/codemap.js \
   $tools_dir/csvparser.js $tools_dir/consarray.js \
   $tools_dir/profile.js $tools_dir/profile_view.js \
   $tools_dir/tickprocessor.js -- $@ 2>/dev/null