blob: cd7be7bcd4ea5ed6a2dae8e9abc106c26cb23581 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
source $(dirname "${BASH_SOURCE[0]}")/runtime.sh
git clone https://github.com/jhunkeler/reloc
mkdir -p reloc/build
pushd reloc/build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release ..
make install
popd
rm -rf reloc
|