Remove non-functional script for doing in-place builds of the LLVM optimisations.
parent
1002b5fd86
commit
1d2e5f7a2d
@ -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
|
||||
Loading…
Reference in New Issue