You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ryan Dahl eeece4f5ea Upgrade V8 to 3.5.3 13 years ago
..
README Upgrade V8 to 3.5.3 13 years ago
SConstruct Upgrade V8 to 2.3.8 14 years ago
oom_dump.cc Upgrade V8 to 2.4.2 14 years ago

README

oom_dump extracts useful information from Google Chrome OOM minidumps.

To build one needs a google-breakpad checkout
(http://code.google.com/p/google-breakpad/).

First, one needs to build and install breakpad itself. For instructions
check google-breakpad, but currently it's as easy as:

./configure
make
sudo make install

(the catch: breakpad installs .so into /usr/local/lib, so you might
need some additional tweaking to make it discoverable, for example,
put a soft link into /usr/lib directory).

Next step is to build v8. Note: you should build x64 version of v8,
if you're on 64-bit platform, otherwise you would get a link error when
building oom_dump. Also, if you are testing against an older version of chrome
you should build the corresponding version of V8 to make sure that the type-id
enum have the correct values.

The last step is to build oom_dump itself. The following command should work:

cd <v8 working copy>/tools/oom_dump
scons BREAKPAD_DIR=<path to google-breakpad working copy>

(