diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-07-16 08:05:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-07-16 08:05:18 +0000 |
commit | f8031b9cf2ed2a3ccf6db0361a85ab641c601ea9 (patch) | |
tree | 5bc9d6a485c0ba11ca3e6512cb5c4d52e6c1992e /llvm/build-for-llvm-top.sh | |
parent | 961eddcfa6ff85e5abf655b8df36d14f2062e094 (diff) | |
download | bcm5719-llvm-f8031b9cf2ed2a3ccf6db0361a85ab641c601ea9.tar.gz bcm5719-llvm-f8031b9cf2ed2a3ccf6db0361a85ab641c601ea9.zip |
Prepare for building from llvm-top. Unfortunately, this doesn't work because
of the cyclic depndency between llvm and llvm-gcc-4-0.
llvm-svn: 39910
Diffstat (limited to 'llvm/build-for-llvm-top.sh')
-rw-r--r-- | llvm/build-for-llvm-top.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/llvm/build-for-llvm-top.sh b/llvm/build-for-llvm-top.sh new file mode 100644 index 00000000000..13d90a416b8 --- /dev/null +++ b/llvm/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 |