Skip to content

Instantly share code, notes, and snippets.

@geniys
Last active March 17, 2016 23:46
Show Gist options
  • Save geniys/2cdd463e84806bc985db to your computer and use it in GitHub Desktop.
Save geniys/2cdd463e84806bc985db to your computer and use it in GitHub Desktop.
Break down Google breakpad

Google breakpad

Install

# install build tools
$ sudo apt-get install build-essential
# optional (compile with -m32)
$ sudo apt-get install gcc-multilib g++-multilib 
# get a copy of depot_tools
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
$ export PATH=`pwd`/depot_tools:"$PATH"
# fecth breakpad
$ mkdir breakpad
$ cd ./breakpad
$ fetch breakpad
# build
$ cd ./src
$ ./configure 
$ make
$ make check

Links

See also

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment