summaryrefslogtreecommitdiff
path: root/build-for-llvm-top.sh
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-07-16 08:05:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-07-16 08:05:18 +0000
commit09d0594d0bb9d3c120a037a283ada913c0def4db (patch)
tree3a8e23e0ba803c35629620c4012280649c639035 /build-for-llvm-top.sh
parentcb7122bb7d6f8191904c3d6e646bffc0282afa68 (diff)
downloadllvm-09d0594d0bb9d3c120a037a283ada913c0def4db.tar.gz
llvm-09d0594d0bb9d3c120a037a283ada913c0def4db.tar.bz2
llvm-09d0594d0bb9d3c120a037a283ada913c0def4db.tar.xz
Prepare for building from llvm-top. Unfortunately, this doesn't work because
of the cyclic depndency between llvm and llvm-gcc-4-0. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39910 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'build-for-llvm-top.sh')
-rw-r--r--build-for-llvm-top.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/build-for-llvm-top.sh b/build-for-llvm-top.sh
new file mode 100644
index 0000000000..13d90a416b
--- /dev/null
+++ b/build-for-llvm-top.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+is_debug=1
+for arg in "$@" ; do
+ case "$arg" in
+ LLVM_TOP=*)
+ LLVM_TOP=`echo "$arg" | sed -e 's/LLVM_TOP=//'`
+ ;;
+ PREFIX=*)
+ PREFIX=`echo "$arg" | sed -e 's/PREFIX=//'`
+ ;;
+ *=*)
+ build_opts="$build_opts $arg"
+ ;;
+ --*)
+ config_opts="$config_opts $arg"
+ ;;
+ esac
+done
+
+# See if we have previously been configured by sensing the presense
+# of the config.status scripts
+config_status="$build_dir/config.status"
+if test ! -d "$config_status" ; then
+ # We must configure so build a list of configure options
+ config_options="--prefix=$PREFIX --with-llvmgccdir=$PREFIX"
+ echo ./configure $config_options $config_opts
+ ./configure $config_options $config_opts
+fi
+
+echo make $build_opts '&&' make install $build_opts
+make $build_opts && make install $build_opts