mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 03:46:11 +00:00
10 lines
306 B
Bash
10 lines
306 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
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 ..
|