From cc29912fcbde997ef710a34fe3d52bb17bd67462 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 19 Apr 2020 22:50:56 -0400 Subject: Add macos --- .circleci/install_reloc.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.circleci/install_reloc.sh') 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 -- cgit