mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
10 lines
304 B
Bash
Executable File
10 lines
304 B
Bash
Executable File
#!/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 ..
|