sm-ext-accelerator-2023/breakpad.sh
2016-02-14 14:40:01 +00:00

29 lines
499 B
Bash
Executable File

#!/bin/sh
set -ex
if [ ! -d "breakpad" ]; then
mkdir breakpad
fi
cd breakpad
if [ ! -d "depot_tools" ]; then
git clone --depth=1 --branch=master https://chromium.googlesource.com/chromium/tools/depot_tools.git depot_tools
fi
if [ ! -d "src" ]; then
./depot_tools/fetch --nohooks breakpad
else
./depot_tools/gclient sync --nohooks
fi
if [ ! -d "build" ]; then
mkdir build
fi
cd build
CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ../src/configure
make src/tools/linux/dump_syms/dump_syms