From 1d2e5f7a2dfb5635b3dc47ce48d57762a48e2c06 Mon Sep 17 00:00:00 2001 From: theraven Date: Thu, 13 Dec 2012 14:22:08 +0000 Subject: [PATCH] Remove non-functional script for doing in-place builds of the LLVM optimisations. --- build_opts.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 build_opts.sh diff --git a/build_opts.sh b/build_opts.sh deleted file mode 100644 index 2aea6c1..0000000 --- a/build_opts.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -LLVM_PATH=`llvm-config --src-root` -LIBOBJC_PATH=`pwd` -if [ x$LLVM_PATH != x ] ; then - if [ -d $LLVM_PATH ] ; then - cd $LLVM_PATH - cd lib/Transforms - if [ ! -d GNURuntime ] ; then - mkdir GNURuntime - fi - cd GNURuntime - for I in `ls $LIBOBJC_PATH/opts/` ; do - if [ ! $I -nt $LIBOBJC_PATH/opts/$I ] ; then - cp $LIBOBJC_PATH/opts/$I . - fi - done - $1 $2 - cd .. - fi -fi