mirror of
https://github.com/mhx/dwarfs.git
synced 2025-08-03 17:56:12 -04:00
23 lines
353 B
Bash
23 lines
353 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cd "$HOME"
|
|
mkdir pkgs
|
|
cd pkgs
|
|
|
|
git clone --depth=1 --recurse-submodules --shallow-submodules https://github.com/google/bloaty
|
|
cd bloaty
|
|
mkdir build
|
|
cd build
|
|
|
|
export PATH="/usr/lib/ccache/bin:$PATH"
|
|
|
|
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local
|
|
ninja
|
|
ccache -s
|
|
ninja install
|
|
|
|
cd "$HOME"
|
|
rm -rf pkgs
|