mirror of
https://github.com/darlinghq/darling-libobjc2.git
synced 2024-11-27 22:20:35 +00:00
649ce9dd7f
Made the LLVM optimisations build by default (if LLVM is installed).
19 lines
343 B
Bash
19 lines
343 B
Bash
#!/bin/sh
|
|
LLVM_PATH=`llvm-config --src-root`
|
|
LIBOBJC_PATH=`pwd`
|
|
if [ x$LLVM_PATH != x ] ; 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
|