summaryrefslogtreecommitdiff
path: root/bcc/build-bcc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bcc/build-bcc.sh')
-rwxr-xr-xbcc/build-bcc.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/bcc/build-bcc.sh b/bcc/build-bcc.sh
deleted file mode 100755
index a3ddc83..0000000
--- a/bcc/build-bcc.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-# This script should run within a bcc checkout
-
-spath=$( cd "$(dirname "$0")" ; pwd -P )
-cd $spath
-
-rm -rf build && mkdir -p build && cd build
-cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_COMPILER=clang-6.0 -DCMAKE_CXX_COMPILER=clang++-6.0
-make -j4
-make install
-cd ..
-rm -rf build