cutter/scripts/prepare_breakpad_linux.sh

10 lines
304 B
Bash
Raw Normal View History

2019-05-14 05:57:43 +00:00
#!/bin/sh
git clone https://github.com/google/breakpad.git
cd breakpad
git clone https://chromium.googlesource.com/linux-syscall-support src/third_party/lss
CFLAGS=-w CXXFLAGS=-w ./configure --prefix=`pwd`/prefix && make -j4 && make install || exit 1
export CUSTOM_BREAKPAD_PREFIX="`pwd`/prefix"
cd ..