From: Eric Christopher Date: Tue, 1 Dec 2009 02:26:01 +0000 (+0000) Subject: Add a soft link so that in an apple style build we can find libLTO.dylib. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c39d9536f74cc8fd754b23b2f1224eb4763bd662;p=oota-llvm.git Add a soft link so that in an apple style build we can find libLTO.dylib. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90189 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 9168d1a4858..4392b27ee1b 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -340,6 +340,14 @@ chgrp -R wheel $DEST_DIR find $DEST_DIR -name html.tar.gz -exec rm {} \; +################################################################################ +# symlinks so that B&I can find things + +cd $DEST_DIR +mkdir -p ./usr/lib/ +cd usr/lib +ln -s ../../Developer/usr/lib/libLTO.dylib ./libLTO.dylib + ################################################################################ # w00t! Done!