From cf930214e12b49e89be4674043d9f461d667baae Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Thu, 28 Feb 2019 11:56:19 +0000 Subject: Updated dependency build system for KLEE Provide a single `scripts/build/build.sh` file to build KLEE and its dependencies. --- scripts/build/install-klee-deps.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 scripts/build/install-klee-deps.sh (limited to 'scripts/build/install-klee-deps.sh') diff --git a/scripts/build/install-klee-deps.sh b/scripts/build/install-klee-deps.sh deleted file mode 100755 index 622e621f..00000000 --- a/scripts/build/install-klee-deps.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -set -e -########################################################################### -# Install KLEE dependencies -########################################################################### -DIR="$(cd "$(dirname "$0")" && pwd)" - -if [[ "${BASE}x" == "x" ]]; then - echo "\${BASE} not set" - exit 1 -fi - -# Install LLVM and the LLVM bitcode compiler we require to build KLEE -"${DIR}/llvm.sh" - -# Install allocators -"${DIR}/tcmalloc.sh" - -# Get SMT solvers -"${DIR}/solvers.sh" - -# Get needed utlities/libraries for testing KLEE -"${DIR}/testing-utils.sh" - -# Install uclibc -"${DIR}/uclibc.sh" -- cgit 1.4.1