blob: 35945f37c1d5db9211bfd07a2ec35a8ed75fa93c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
git clone https://github.com/jhunkeler/reloc
mkdir -p reloc/build
pushd reloc/build
cmake3 -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release ..
make install
popd
rm -rf reloc
|