From 838c8723e314782c255011536126b95e9d6a97f9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 24 Mar 2020 14:51:59 -0400 Subject: Add .circleci/config.yml --- .circleci/install_reloc.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 .circleci/install_reloc.sh (limited to '.circleci/install_reloc.sh') diff --git a/.circleci/install_reloc.sh b/.circleci/install_reloc.sh new file mode 100755 index 0000000..35945f3 --- /dev/null +++ b/.circleci/install_reloc.sh @@ -0,0 +1,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 -- cgit