aboutsummaryrefslogtreecommitdiff
path: root/.circleci/install_reloc.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-04-19 22:50:56 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-04-20 00:21:04 -0400
commitcc29912fcbde997ef710a34fe3d52bb17bd67462 (patch)
tree4a3b05f4ad8303bf0f4744cf02f215a9732b24d9 /.circleci/install_reloc.sh
parent4cd31e08440e438c3dfd1f224babdc627d591530 (diff)
downloadspmc-cc29912fcbde997ef710a34fe3d52bb17bd67462.tar.gz
Add macos
Diffstat (limited to '.circleci/install_reloc.sh')
-rwxr-xr-x.circleci/install_reloc.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.circleci/install_reloc.sh b/.circleci/install_reloc.sh
index 35945f3..cd7be7b 100755
--- a/.circleci/install_reloc.sh
+++ b/.circleci/install_reloc.sh
@@ -1,8 +1,10 @@
#!/bin/bash
+source $(dirname "${BASH_SOURCE[0]}")/runtime.sh
+
git clone https://github.com/jhunkeler/reloc
mkdir -p reloc/build
pushd reloc/build
- cmake3 -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release ..
+ cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release ..
make install
popd
rm -rf reloc